|
|
@ -14,11 +14,13 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Vmi |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
public VmiBalanceSumDetail(string vincode, string realPartcode, string erpToLoc, DateTime? shippingTime, DateTime? receiveTime, decimal sumQty, decimal shippingQty, decimal settleQty, decimal returnQty, decimal inputQty, decimal outputQty) |
|
|
|
public VmiBalanceSumDetail(string vinCode, string realPartCode, string erpToLoc, string matchNumber, string codeType, DateTime? shippingTime, DateTime? receiveTime, decimal sumQty, decimal shippingQty, decimal settleQty, decimal returnQty, decimal inputQty, decimal outputQty) |
|
|
|
{ |
|
|
|
VinCode = vincode; |
|
|
|
RealPartCode = realPartcode; |
|
|
|
VinCode = vinCode; |
|
|
|
RealPartCode = realPartCode; |
|
|
|
ErpToLoc = erpToLoc; |
|
|
|
MatchNumber = matchNumber; |
|
|
|
CodeType = codeType; |
|
|
|
ShippingTime = shippingTime; |
|
|
|
ReceiveTime = receiveTime; |
|
|
|
SumQty = sumQty; |
|
|
@ -29,11 +31,11 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Vmi |
|
|
|
OutputQty = outputQty; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string VinCode { set; get; } |
|
|
|
public string RealPartCode { set; get; } |
|
|
|
public string ErpToLoc { set; get; } |
|
|
|
public string MatchNumber {set;get;} |
|
|
|
public string CodeType { set; get; } |
|
|
|
public DateTime? ShippingTime { set; get; } |
|
|
|
public DateTime? ReceiveTime { set; get; } |
|
|
|
public decimal SumQty { set; get; } |
|
|
@ -48,7 +50,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Vmi |
|
|
|
public VmiBalanceSum() |
|
|
|
{ |
|
|
|
} |
|
|
|
|
|
|
|
public VmiBalanceSum(string realPartcode, string erpToLoc, decimal sumQty) |
|
|
|
{ |
|
|
|
RealPartCode = realPartcode; |
|
|
|