From 0e860de56fbf7ac66b9563fb946055207f09f9d6 Mon Sep 17 00:00:00 2001 From: lg <999544862qq.com> Date: 星期四, 15 八月 2024 10:25:43 +0800 Subject: [PATCH] Merge branch 'master' of http://43.142.96.171:8080/r/~tjx/StandardPda --- MES.Service/Modes/MesDepotSections.cs | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 115 insertions(+), 0 deletions(-) diff --git a/MES.Service/Modes/MesDepotSections.cs b/MES.Service/Modes/MesDepotSections.cs new file mode 100644 index 0000000..5cb98ee --- /dev/null +++ b/MES.Service/Modes/MesDepotSections.cs @@ -0,0 +1,115 @@ +锘縰sing SqlSugar; + +namespace MES.Service.Modes; + +/// <summary> +/// 浠撲綅淇℃伅 +/// </summary> +[SugarTable("MES_DEPOT_SECTIONS")] +public class MesDepotSections +{ + /// <summary> + /// ID(SEQ_INV_ID)锛圗RPID锛� + /// </summary> + [SugarColumn(ColumnName = "DEPOT_SECTION_ID", IsPrimaryKey = true)] + public decimal DepotSectionId { get; set; } + + /// <summary> + /// 璐т綅缂栫爜 + /// </summary> + [SugarColumn(ColumnName = "DEPOT_SECTION_CODE")] + public string DepotSectionCode { get; set; } + + /// <summary> + /// 璐т綅鍚嶇О + /// </summary> + [SugarColumn(ColumnName = "DEPOT_SECTION_NAME")] + public string DepotSectionName { get; set; } + + /// <summary> + /// 浠撳簱缂栫爜 + /// </summary> + [SugarColumn(ColumnName = "DEPOT_ID")] + public decimal? DepotId { get; set; } + + /// <summary> + /// 鍙備笌榻愬鏍¢獙(0:鍚�,1:鏄�) + /// </summary> + [SugarColumn(ColumnName = "COMPLETENESS_FLAG")] + public short? CompletenessFlag { get; set; } + + /// <summary> + /// 澶囨敞 + /// </summary> + [SugarColumn(ColumnName = "DESCRIPTION")] + public string Description { get; set; } + + /// <summary> + /// 鍒涘缓浜� + /// </summary> + [SugarColumn(ColumnName = "CREATE_BY")] + public string CreateBy { get; set; } + + /// <summary> + /// 鍒涘缓鏃堕棿 + /// </summary> + [SugarColumn(ColumnName = "CREATE_DATE")] + public DateTime? CreateDate { get; set; } + + /// <summary> + /// 鏈�鍚庢洿鏂颁汉 + /// </summary> + [SugarColumn(ColumnName = "LASTUPDATE_BY")] + public string LastupdateBy { get; set; } + + /// <summary> + /// 鏈�鍚庢洿鏂版椂闂� + /// </summary> + [SugarColumn(ColumnName = "LASTUPDATE_DATE")] + public DateTime? LastupdateDate { get; set; } + + /// <summary> + /// </summary> + [SugarColumn(ColumnName = "COMPANY")] + public string Company { get; set; } + + /// <summary> + /// </summary> + [SugarColumn(ColumnName = "FACTORY")] + public string Factory { get; set; } + + /// <summary> + /// 鍗℃澘鏁� + /// </summary> + [SugarColumn(ColumnName = "KB_QTY")] + public decimal? KbQty { get; set; } + + /// <summary> + /// 浠撲綅缁処D + /// </summary> + [SugarColumn(ColumnName = "ZUID")] + public decimal? Zuid { get; set; } + + /// <summary> + /// 浠撲綅鍏ㄥ悕 + /// </summary> + [SugarColumn(ColumnName = "DEPOT_SECTION_NAMET")] + public string DepotSectionNamet { get; set; } + + /// <summary> + /// </summary> + [SugarColumn(ColumnName = "ERPID")] + public decimal? Erpid { get; set; } + + /// <summary> + /// 浠撳簱绫诲埆缂栫爜 + /// </summary> + [SugarColumn(IsIgnore = true)] + public string? DepotCode { get; set; } + + /// <summary> + /// 浠撳簱绫诲埆鍚嶇О + /// </summary> + [SugarColumn(IsIgnore = true)] + public string? DepotName { get; set; } +} \ No newline at end of file -- Gitblit v1.9.3