using SqlSugar;
namespace MES.Service.Modes;
///
/// 仓位信息
///
[SugarTable("MES_DEPOT_SECTIONS")]
public class MesDepotSections
{
///
/// ID(SEQ_INV_ID)(ERPID)
///
[SugarColumn(ColumnName = "DEPOT_SECTION_ID", IsPrimaryKey = true)]
public decimal DepotSectionId { get; set; }
///
/// 货位编码
///
[SugarColumn(ColumnName = "DEPOT_SECTION_CODE")]
public string DepotSectionCode { get; set; }
///
/// 货位名称
///
[SugarColumn(ColumnName = "DEPOT_SECTION_NAME")]
public string DepotSectionName { get; set; }
///
/// 仓库编码
///
[SugarColumn(ColumnName = "DEPOT_ID")]
public decimal? DepotId { get; set; }
///
/// 参与齐套校验(0:否,1:是)
///
[SugarColumn(ColumnName = "COMPLETENESS_FLAG")]
public short? CompletenessFlag { 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 = "COMPANY")]
public string Company { get; set; }
///
///
[SugarColumn(ColumnName = "FACTORY")]
public string Factory { get; set; }
///
/// 卡板数
///
[SugarColumn(ColumnName = "KB_QTY")]
public decimal? KbQty { get; set; }
///
/// 仓位组ID
///
[SugarColumn(ColumnName = "ZUID")]
public decimal? Zuid { get; set; }
///
/// 仓位全名
///
[SugarColumn(ColumnName = "DEPOT_SECTION_NAMET")]
public string DepotSectionNamet { get; set; }
///
///
[SugarColumn(ColumnName = "ERPID")]
public decimal? Erpid { get; set; }
///
/// 仓库类别编码
///
[SugarColumn(IsIgnore = true)]
public string? DepotCode { get; set; }
///
/// 仓库类别名称
///
[SugarColumn(IsIgnore = true)]
public string? DepotName { get; set; }
}