namespace Win_in.Sfs.Shared.Event;
/*
public class SfsDetailETOBase : IHasNumber,IHasExtraProperties,IMultiTenant,IRemark
{
public Guid? TenantId { get; }
[Display(Name = "备注")]
public string Remark { get; set; }
public ExtraPropertyDictionary ExtraProperties { get; }
public Guid MasterID { get; set; }
///
/// 任务编号
///
[Display(Name = "任务编号")]
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
public string Number { get; set; }
///
/// 仓库
///
[Display(Name = "仓库")]
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
public string WarehouseCode { get; set; }
}
*/