using SqlSugar; namespace MES.Service.Modes; /// /// 客户信息 /// [SugarTable("MES_CUSTOMER")] public class MesCustomer { /// /// ID /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } /// /// 客户编码 /// [SugarColumn(ColumnName = "CUST_NO")] public string? CustNo { get; set; } /// /// 客户名称 /// [SugarColumn(ColumnName = "CUST_NAME")] public string? CustName { get; set; } /// /// 客户简称 /// [SugarColumn(ColumnName = "CUST_SNAME")] public string? CustSname { get; set; } // /// 电话 /// [SugarColumn(ColumnName = "TELF1")] public string? Telf1 { get; set; } /// /// 联系人 /// [SugarColumn(ColumnName = "ANRED")] public string? Anred { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATE_DATE")] public DateTime? CreateDate { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATE_BY")] public string? CreateBy { get; set; } /// /// 最后修改时间 /// [SugarColumn(ColumnName = "LASTUPDATE_DATE")] public DateTime? LastupdateDate { get; set; } /// /// 最后修改人 /// [SugarColumn(ColumnName = "LASTUPDATE_BY")] public string? LastupdateBy { get; set; } /// /// 公司 /// [SugarColumn(ColumnName = "COMPANY")] public string? Company { get; set; } /// /// 分厂编码 /// [SugarColumn(ColumnName = "FACTORY")] public string? Factory { get; set; } /// /// 是否批次管理(是,否) /// [SugarColumn(ColumnName = "LOT_FLAG")] public short? LotFlag { get; set; } /// /// 禁用状态 /// [SugarColumn(ColumnName = "FFORBIDSTATUS")] public string? Fforbidstatus { get; set; } /// /// 销售员 /// [SugarColumn(ColumnName = "FSELLER")] public string? Fseller { get; set; } /// /// 備註 /// [SugarColumn(ColumnName = "REMARK")] public string? Remarks { get; set; } /// /// 使用組織 /// [SugarColumn(ColumnName = "FSubsidiary")] public string? FSubsidiary { get; set; } /// /// 創建組織 /// [SugarColumn(ColumnName = "Fumbrella")] public string? Fumbrella { get; set; } /// /// 单据状态 /// [SugarColumn(ColumnName = "DATA_TYPE")] public string? DataType { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } }