From 5bc6d819399409a429093a6001c553d6fa2d2e15 Mon Sep 17 00:00:00 2001 From: huangxiaoqiang <huangxiaoqiang@hnkhzn.com> Date: 星期三, 19 二月 2025 14:34:06 +0800 Subject: [PATCH] 上传三楼代码 --- Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs | 31 +++++++++++++++++++++++-------- 1 files changed, 23 insertions(+), 8 deletions(-) diff --git a/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs b/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs index 7e70e6f..970c257 100644 --- a/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs +++ b/Code Management/WCS/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/BasicInfo/dt_needBarcode.cs @@ -1,4 +1,5 @@ -锘縰sing SqlSugar; +锘縰sing Magicodes.ExporterAndImporter.Core; +using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; @@ -13,43 +14,57 @@ public class dt_needBarcode : BaseEntity { [Key] - [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")] + [ImporterHeader(IsIgnore = true)] + [ExporterHeader(DisplayName = "涓婚敭")] + [SugarColumn(IsIdentity = true, IsNullable = true, IsPrimaryKey = true, ColumnDescription = "涓婚敭")] public int id { get; set; } /// <summary> /// 鐩爣搴撳尯 /// </summary> - [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "鐩爣搴撳尯")] + [ImporterHeader(Name = "鐩爣搴撳尯")] + [ExporterHeader(DisplayName = "鐩爣搴撳尯")] + [SugarColumn(IsNullable = true, ColumnDescription = "鐩爣搴撳尯")] public string toArea { get; set; } /// <summary> /// 鏉ユ簮搴撳尯 /// </summary> - [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鏉ユ簮搴撳尯")] + [ImporterHeader(Name = "鏉ユ簮搴撳尯")] + [ExporterHeader(DisplayName = "鏉ユ簮搴撳尯")] + [SugarColumn(IsNullable = true, ColumnDescription = "鏉ユ簮搴撳尯")] public string fromArea { get; set; } /// <summary> /// 鎵樼洏绫诲瀷 /// </summary> - [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鎵樼洏绫诲瀷")] + [ImporterHeader(Name = "鎵樼洏绫诲瀷")] + [ExporterHeader(DisplayName = "鎵樼洏绫诲瀷")] + [SugarColumn(IsNullable = true, ColumnDescription = "鎵樼洏绫诲瀷")] public string barcodeType { get; set; } /// <summary> /// 浜х嚎 /// </summary> - [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鎵�灞炰骇绾�")] + [ImporterHeader(Name = "浜х嚎")] + [ExporterHeader(DisplayName = "浜х嚎")] + [SugarColumn(IsNullable = true, ColumnDescription = "浜х嚎")] public string productLine { get; set; } /// <summary> /// 鍦ㄩ�旀暟閲� /// </summary> - [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鍦ㄩ�旀暟閲�")] + [ImporterHeader(Name = "鍦ㄩ�旀暟閲�")] + [ExporterHeader(DisplayName = "鍦ㄩ�旀暟閲�")] + [SugarColumn(IsNullable = true, ColumnDescription = "鍦ㄩ�旀暟閲�")] public int inLineNum { get; set; } /// <summary> /// 鐩爣缂撳瓨鏁伴噺 /// </summary> - [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "鍙紦瀛樻暟閲�")] + [ImporterHeader(Name = "鍙紦瀛樻暟閲�")] + [ExporterHeader(DisplayName = "鍙紦瀛樻暟閲�")] + [SugarColumn(IsNullable = true, ColumnDescription = "鍙紦瀛樻暟閲�")] public int cacheNum { get; set; } = 0; -- Gitblit v1.9.3