From b2a5e60d5df66bc8a6be7e12eded1f7e923e9196 Mon Sep 17 00:00:00 2001 From: wells.liu <wells.liu@broconcentric.com> Date: 星期一, 13 七月 2020 18:50:16 +0800 Subject: [PATCH] 一天一个excel 添加产品条码列 --- src/Bro.M071.Model/Model/KeyUnitData.cs | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/Bro.M071.Model/Model/KeyUnitData.cs b/src/Bro.M071.Model/Model/KeyUnitData.cs index ccea504..b583e78 100644 --- a/src/Bro.M071.Model/Model/KeyUnitData.cs +++ b/src/Bro.M071.Model/Model/KeyUnitData.cs @@ -1,6 +1,7 @@ 锘� using System; using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; namespace Bro.M071.Model.Model { @@ -32,6 +33,9 @@ /// </summary> [StringLength(64)] public string ItemValue { get; set; } + + [NotMapped] + public string ProductionBarcode { get; set; } } public class KeyUnitDataRequest : BaseRequest -- Gitblit v1.8.0