From ef01f86ce5c84f04edc3ba67e74a5263d86f238d Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期二, 19 十一月 2024 08:40:20 +0800 Subject: [PATCH] 11 --- entity/MesDepots.cs | 161 ++++++++++++++++++++++++++++++++--------------------- 1 files changed, 96 insertions(+), 65 deletions(-) diff --git a/entity/MesDepots.cs b/entity/MesDepots.cs index 6d4ae7b..7448b67 100644 --- a/entity/MesDepots.cs +++ b/entity/MesDepots.cs @@ -12,168 +12,199 @@ /// /// 榛樿鍊�: (newid()) ///</summary> - [SugarColumn(ColumnName="guid" ,IsPrimaryKey = true )] - public Guid Guid { get; set; } + [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] + public Guid Guid { get; set; } + /// <summary> /// ID(SEQ_INV_ID) ///</summary> - [SugarColumn(ColumnName="depot_id" )] - public int DepotId { get; set; } + [SugarColumn(ColumnName = "depot_id")] + public int DepotId { get; set; } + /// <summary> /// 浠撳簱绫诲埆缂栫爜 ///</summary> - [SugarColumn(ColumnName="depot_code" )] - public string DepotCode { get; set; } + [SugarColumn(ColumnName = "depot_code")] + public string? DepotCode { get; set; } + /// <summary> /// 浠撳簱绫诲埆鍚嶇О ///</summary> - [SugarColumn(ColumnName="depot_name" )] - public string DepotName { get; set; } + [SugarColumn(ColumnName = "depot_name")] + public string? DepotName { get; set; } + /// <summary> /// 澶囨敞 ///</summary> - [SugarColumn(ColumnName="description" )] - public string Description { get; set; } + [SugarColumn(ColumnName = "description")] + public string? Description { get; set; } + /// <summary> /// 浠撳簱璐熻矗浜� ///</summary> - [SugarColumn(ColumnName="create_by" )] - public string CreateBy { get; set; } + [SugarColumn(ColumnName = "create_by")] + public string? CreateBy { get; set; } + /// <summary> /// 鍒涘缓鏃堕棿 ///</summary> - [SugarColumn(ColumnName="create_date" )] - public DateTime? CreateDate { get; set; } + [SugarColumn(ColumnName = "create_date")] + public DateTime? CreateDate { get; set; } + /// <summary> /// 鏈�鍚庢洿鏂颁汉 ///</summary> - [SugarColumn(ColumnName="lastupdate_by" )] - public string LastupdateBy { get; set; } + [SugarColumn(ColumnName = "lastupdate_by")] + public string? LastupdateBy { get; set; } + /// <summary> /// 鏈�鍚庢洿鏂版椂闂� ///</summary> - [SugarColumn(ColumnName="lastupdate_date" )] - public DateTime? LastupdateDate { get; set; } + [SugarColumn(ColumnName = "lastupdate_date")] + public DateTime? LastupdateDate { get; set; } + /// <summary> /// 浠撳簱绫诲瀷 ///</summary> - [SugarColumn(ColumnName="depottype" )] - public string Depottype { get; set; } + [SugarColumn(ColumnName = "depottype")] + public string? Depottype { get; set; } + /// <summary> /// 鍒嗗巶缂栫爜 ///</summary> - [SugarColumn(ColumnName="factory" )] - public string Factory { get; set; } + [SugarColumn(ColumnName = "factory")] + public string? Factory { get; set; } + /// <summary> /// 鐗╂枡浣跨敤 /// 榛樿鍊�: ((0)) ///</summary> - [SugarColumn(ColumnName="type_1" )] - public int? Type1 { get; set; } + [SugarColumn(ColumnName = "type_1")] + public int? Type1 { get; set; } + /// <summary> /// 鎴愬搧浣跨敤 /// 榛樿鍊�: ((0)) ///</summary> - [SugarColumn(ColumnName="type_2" )] - public int? Type2 { get; set; } + [SugarColumn(ColumnName = "type_2")] + public int? Type2 { get; set; } + /// <summary> /// 浠撳簱绫诲瀷缂栫爜 ///</summary> - [SugarColumn(ColumnName="depottypecode" )] - public int? Depottypecode { get; set; } + [SugarColumn(ColumnName = "depottypecode")] + public int? Depottypecode { get; set; } + /// <summary> /// 鍏徃浠g爜 ///</summary> - [SugarColumn(ColumnName="company" )] - public string Company { get; set; } + [SugarColumn(ColumnName = "company")] + public string? Company { get; set; } + /// <summary> /// 鐪嬫澘鍥炬爣鏍峰紡 ///</summary> - [SugarColumn(ColumnName="icon_type" )] - public int? IconType { get; set; } + [SugarColumn(ColumnName = "icon_type")] + public int? IconType { get; set; } + /// <summary> /// 鏄惁濮斿浠撳簱 /// 榛樿鍊�: ((0)) ///</summary> - [SugarColumn(ColumnName="is_wy" )] - public int? IsWy { get; set; } + [SugarColumn(ColumnName = "is_wy")] + public int? IsWy { get; set; } + /// <summary> /// 鏄惁涓嶈壇鍝佷粨 /// 榛樿鍊�: ((0)) ///</summary> - [SugarColumn(ColumnName="is_ng" )] - public string IsNg { get; set; } + [SugarColumn(ColumnName = "is_ng")] + public string? IsNg { get; set; } + /// <summary> /// 浠撳簱鍦板潃 ///</summary> - [SugarColumn(ColumnName="cwhaddress" )] - public string Cwhaddress { get; set; } + [SugarColumn(ColumnName = "cwhaddress")] + public string? Cwhaddress { get; set; } + /// <summary> /// 鐪嬫澘鏄剧ず鍖哄煙缂栧彿 /// 榛樿鍊�: ((1)) ///</summary> - [SugarColumn(ColumnName="pi_type" )] - public string PiType { get; set; } + [SugarColumn(ColumnName = "pi_type")] + public string? PiType { get; set; } + /// <summary> /// 鍒嗙粍 ///</summary> - [SugarColumn(ColumnName="zuid" )] - public string Zuid { get; set; } + [SugarColumn(ColumnName = "zuid")] + public string? Zuid { get; set; } + /// <summary> /// 鍏佽鍗虫椂搴撳瓨璐熷簱瀛� ///</summary> - [SugarColumn(ColumnName="is_fkc" )] - public string IsFkc { get; set; } + [SugarColumn(ColumnName = "is_fkc")] + public string? IsFkc { get; set; } + /// <summary> /// 鐢熶骇杞﹂棿 ///</summary> - [SugarColumn(ColumnName="production_workshop" )] - public string ProductionWorkshop { get; set; } + [SugarColumn(ColumnName = "production_workshop")] + public string? ProductionWorkshop { get; set; } + /// <summary> /// 鐗╂枡灞炴�� ///</summary> - [SugarColumn(ColumnName="material_properti" )] - public string MaterialProperti { get; set; } + [SugarColumn(ColumnName = "material_properti")] + public string? MaterialProperti { get; set; } + /// <summary> /// 鑷畾涔夊瓧娈�3 ///</summary> - [SugarColumn(ColumnName="remark3" )] - public string Remark3 { get; set; } + [SugarColumn(ColumnName = "remark3")] + public string? Remark3 { get; set; } + /// <summary> /// 鑷畾涔夊瓧娈�4 ///</summary> - [SugarColumn(ColumnName="remark4" )] - public string Remark4 { get; set; } + [SugarColumn(ColumnName = "remark4")] + public string? Remark4 { get; set; } + /// <summary> /// 鑷畾涔夊瓧娈�5 ///</summary> - [SugarColumn(ColumnName="remark5" )] - public string Remark5 { get; set; } + [SugarColumn(ColumnName = "remark5")] + public string? Remark5 { get; set; } + /// <summary> /// ///</summary> - [SugarColumn(ColumnName="check_date" )] - public DateTime? CheckDate { get; set; } + [SugarColumn(ColumnName = "check_date")] + public DateTime? CheckDate { get; set; } + /// <summary> /// ///</summary> - [SugarColumn(ColumnName="check_by" )] - public string CheckBy { get; set; } + [SugarColumn(ColumnName = "check_by")] + public string? CheckBy { get; set; } + /// <summary> /// /// 榛樿鍊�: ((0)) ///</summary> - [SugarColumn(ColumnName="check_status" )] - public bool? CheckStatus { get; set; } + [SugarColumn(ColumnName = "check_status")] + public bool? CheckStatus { get; set; } + /// <summary> /// 鍒涘缓缁勭粐 ///</summary> - [SugarColumn(ColumnName="Fumbrella" )] - public string Fumbrella { get; set; } + [SugarColumn(ColumnName = "Fumbrella")] + public string? Fumbrella { get; set; } + /// <summary> /// 浣跨敤缁勭粐 ///</summary> - [SugarColumn(ColumnName="FSubsidiary" )] - public string FSubsidiary { get; set; } + [SugarColumn(ColumnName = "FSubsidiary")] + public string? FSubsidiary { get; set; } } -} +} \ No newline at end of file -- Gitblit v1.9.3