You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.3 KiB
56 lines
1.3 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using Win.Sfs.Shared.DomainBase;
|
||
|
|
||
|
namespace Win.Sfs.SettleAccount.Entities.HQExtend
|
||
|
{
|
||
|
public class HQKBSettleExtendVersion : FullAuditedAggregateRootBase<Guid>, ISettleAccountEntityBase
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public HQKBSettleExtendVersion()
|
||
|
{ }
|
||
|
|
||
|
public string Year { get; set; }
|
||
|
/// <summary>
|
||
|
/// 期间
|
||
|
/// </summary>
|
||
|
public string Period { get; set; }
|
||
|
/// <summary>
|
||
|
/// 版本号
|
||
|
/// </summary>
|
||
|
public string Version { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
public string Factory { set; get; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 客户号
|
||
|
/// </summary>
|
||
|
public string CustomerCode { private set; get; }
|
||
|
|
||
|
|
||
|
public HQKBSettleExtendVersion(
|
||
|
Guid id,
|
||
|
Guid branchId,
|
||
|
string year, string period, string version, string customerCode, string factory) : base(id)
|
||
|
{
|
||
|
BranchId = branchId;
|
||
|
Year = year;
|
||
|
Period = period;
|
||
|
Version = version;
|
||
|
CustomerCode = customerCode;
|
||
|
Factory = factory;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|