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")]