using SqlSugar; namespace NewPdaSqlServer.entity { /// /// /// [SugarTable("MES_DEPOTS")] public class MesDepots { /// /// /// 默认值: (newid()) /// [SugarColumn(ColumnName="guid" ,IsPrimaryKey = true )] public Guid Guid { get; set; } /// /// ID(SEQ_INV_ID) /// [SugarColumn(ColumnName="depot_id" )] public int DepotId { get; set; } /// /// 仓库类别编码 /// [SugarColumn(ColumnName="depot_code" )] public string DepotCode { get; set; } /// /// 仓库类别名称 /// [SugarColumn(ColumnName="depot_name" )] public string DepotName { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="description" )] public string Description { get; set; } /// /// 仓库负责人 /// [SugarColumn(ColumnName="create_by" )] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName="create_date" )] public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// [SugarColumn(ColumnName="lastupdate_by" )] public string LastupdateBy { get; set; } /// /// 最后更新时间 /// [SugarColumn(ColumnName="lastupdate_date" )] public DateTime? LastupdateDate { get; set; } /// /// 仓库类型 /// [SugarColumn(ColumnName="depottype" )] public string Depottype { get; set; } /// /// 分厂编码 /// [SugarColumn(ColumnName="factory" )] public string Factory { get; set; } /// /// 物料使用 /// 默认值: ((0)) /// [SugarColumn(ColumnName="type_1" )] public int? Type1 { get; set; } /// /// 成品使用 /// 默认值: ((0)) /// [SugarColumn(ColumnName="type_2" )] public int? Type2 { get; set; } /// /// 仓库类型编码 /// [SugarColumn(ColumnName="depottypecode" )] public int? Depottypecode { get; set; } /// /// 公司代码 /// [SugarColumn(ColumnName="company" )] public string Company { get; set; } /// /// 看板图标样式 /// [SugarColumn(ColumnName="icon_type" )] public int? IconType { get; set; } /// /// 是否委外仓库 /// 默认值: ((0)) /// [SugarColumn(ColumnName="is_wy" )] public int? IsWy { get; set; } /// /// 是否不良品仓 /// 默认值: ((0)) /// [SugarColumn(ColumnName="is_ng" )] public string IsNg { get; set; } /// /// 仓库地址 /// [SugarColumn(ColumnName="cwhaddress" )] public string Cwhaddress { get; set; } /// /// 看板显示区域编号 /// 默认值: ((1)) /// [SugarColumn(ColumnName="pi_type" )] public string PiType { get; set; } /// /// 分组 /// [SugarColumn(ColumnName="zuid" )] public string Zuid { get; set; } /// /// 允许即时库存负库存 /// [SugarColumn(ColumnName="is_fkc" )] public string IsFkc { get; set; } /// /// 生产车间 /// [SugarColumn(ColumnName="production_workshop" )] public string ProductionWorkshop { get; set; } /// /// 物料属性 /// [SugarColumn(ColumnName="material_properti" )] public string MaterialProperti { get; set; } /// /// 自定义字段3 /// [SugarColumn(ColumnName="remark3" )] public string Remark3 { get; set; } /// /// 自定义字段4 /// [SugarColumn(ColumnName="remark4" )] public string Remark4 { get; set; } /// /// 自定义字段5 /// [SugarColumn(ColumnName="remark5" )] public string Remark5 { get; set; } /// /// /// [SugarColumn(ColumnName="check_date" )] public DateTime? CheckDate { get; set; } /// /// /// [SugarColumn(ColumnName="check_by" )] public string CheckBy { get; set; } /// /// /// 默认值: ((0)) /// [SugarColumn(ColumnName="check_status" )] public bool? CheckStatus { get; set; } /// /// 创建组织 /// [SugarColumn(ColumnName="Fumbrella" )] public string Fumbrella { get; set; } /// /// 使用组织 /// [SugarColumn(ColumnName="FSubsidiary" )] public string FSubsidiary { get; set; } } }