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.

28 lines
727 B

namespace Win.Sfs.Shared.DomainBase
{
public abstract class CreationAuditedDocumentDetailBase<TKey>
: CreationAuditedEntityBase<TKey>
, IDocumentNumber
, IItem<TKey>
{
protected CreationAuditedDocumentDetailBase() { }
public CreationAuditedDocumentDetailBase(TKey id) : base(id) { }
/// <summary>
/// 单据流水号
/// </summary>
public string DocumentNumber { get; set; }
/// <summary>
/// 物品ID
/// </summary>
public TKey ItemId { get; set; }
/// <summary>
/// 物品代码
/// </summary>
public string ItemCode { get; set; }
}
}