namespace DOAN.Model.MES.base_ { /// /// 客户信息 /// [SugarTable("base_custom")] [Tenant("0")] public class BaseCustom { /// /// 主键 /// [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_add_name")] public string CustomAddName { get; set; } /// /// 客户地址 /// [SugarColumn(ColumnName = "custom_address")] public string CustomAddress { get; set; } /// /// 客户联系人 /// [SugarColumn(ColumnName = "custom_liaison")] public string CustomLiaison { get; set; } /// /// 客户手机号 /// [SugarColumn(ColumnName = "custom_phone")] public string CustomPhone { get; set; } /// /// 类别 /// public int? Type { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 备注 /// 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; } } }