From 4e3d806e31599fac5a7c0a8be5cd4c9ed5a666f9 Mon Sep 17 00:00:00 2001 From: luanhui <1029149336@@qq.com> Date: Tue, 30 Jan 2018 21:07:42 +0800 Subject: [PATCH] . --- .../Bills/SubKillWeightBill/SubKillWeightBill.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/B3SubstituteKill/BO/Bills/SubKillWeightBill/SubKillWeightBill.cs b/B3SubstituteKill/BO/Bills/SubKillWeightBill/SubKillWeightBill.cs index f4df22b..96142fd 100644 --- a/B3SubstituteKill/BO/Bills/SubKillWeightBill/SubKillWeightBill.cs +++ b/B3SubstituteKill/BO/Bills/SubKillWeightBill/SubKillWeightBill.cs @@ -68,18 +68,18 @@ namespace BWP.B3SubstituteKill.BO [DFExtProperty("WebControlType", DFEditControl.StaticText)] public Money Weight { get; set; } - [LogicName("代宰毛重")] - [DFExtProperty("WebControlType", DFEditControl.StaticText)] - public Money MaoWeight { get; set; } - [LogicName("代宰皮重")] + [LogicName("价格单号")] [DFExtProperty("WebControlType", DFEditControl.StaticText)] - public Money PiWeight { get; set; } + public long? PriceBill_ID { get; set; } + [LogicName("代宰毛重")] + [DFExtProperty("WebControlType", DFEditControl.StaticText)] + public Money? MaoWeight { get; set; } - [LogicName("价格单号")] + [LogicName("代宰皮重")] [DFExtProperty("WebControlType", DFEditControl.StaticText)] - public long? PriceBill_ID { get; set; } + public Money? PiWeight { get; set; } private SubKillWeightBill_DetailCollection _mDetails = new SubKillWeightBill_DetailCollection(); [OneToMany(typeof(SubKillWeightBill_Detail), "ID")]