namespace ZR.Model.MES.wms { /// /// 客户信息 /// [SugarTable("wm_custom")] public class WmCustom { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 客户代码 /// [SugarColumn(ColumnName = "custom_no")] public string CustomNo { get; set; } /// /// 客户名称 /// [SugarColumn(ColumnName = "custom_name")] public string CustomName { get; set; } /// /// 客户地址 /// [SugarColumn(ColumnName = "custom_address")] public string CustomAddress { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }