using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace ZR.Model.MES.wms { /// /// 客户信息 /// [SugarTable("wm_custom")] public class WmCustom { /// /// 主键 /// [SugarColumn(ColumnName="id" ,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; } } }