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.

29 lines
801 B

2 years ago
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; }
/// <summary>
/// 任务编号
/// </summary>
[Display(Name = "任务编号")]
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
public string Number { get; set; }
/// <summary>
/// 仓库
/// </summary>
[Display(Name = "仓库")]
[StringLength(SfsEfCorePropertyConst.CodeLength, ErrorMessage = "{0}最多输入{1}个字符")]
public string WarehouseCode { get; set; }
}
*/