using SqlSugar; namespace MES.Service.Modes; /// /// 仓库信息 /// [SugarTable("MES_DEPOTS")] public class MesDepots { /// /// ID(SEQ_INV_ID) /// [SugarColumn(ColumnName = "DEPOT_ID", IsPrimaryKey = true)] public decimal DepotId { get; set; } /// /// 仓库类别编码 /// [SugarColumn(ColumnName = "DEPOT_CODE")] public string? DepotCode { get; set; } /// /// 仓库类别名称 /// [SugarColumn(ColumnName = "DEPOT_NAME")] public string? DepotName { 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; } /// /// 公司代码 /// [SugarColumn(ColumnName = "COMPANY")] public string? Company { get; set; } /// /// 是否不良品仓 /// [SugarColumn(ColumnName = "IS_NG")] public string? IsNg { get; set; } /// /// 仓位组ID /// [SugarColumn(ColumnName = "ZUID")] public string? Zuid { get; set; } /// /// 允许即时库存负库存 /// [SugarColumn(ColumnName = "IS_FKC")] public string? IsFkc { get; set; } /// /// 使用組織 /// [SugarColumn(ColumnName = "FSubsidiary")] public string? FSubsidiary { get; set; } /// /// 創建組織 /// [SugarColumn(ColumnName = "Fumbrella")] public string? Fumbrella { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } }