namespace DS.WMS.Core.Application.Dtos { public class InvoiceTemplateForm : ApplicationDto { /// /// 外币金额(总计) /// public decimal ForeignTotal { get; set; } /// /// 人民币金额(总计) /// public decimal RMBTotal { get; set; } /// /// 折算汇率(总计) /// public decimal? ExchangeRateTotal { get; set; } /// /// 购方银行 /// public string? ClientBankName { get; set; } /// /// 购方账号 /// public string? ClientAccount { get; set; } /// /// 购方银行 /// public string? BankName { get; set; } public List Details { get; set; } } public class InvoiceTemplateDetail : ApplicationDetailDto { /// /// 装货港 /// public string? LoadPort { get; set; } /// /// 卸货港 /// public string? DischargePort { get; set; } /// /// 目的地 /// public string? Destination { get; set; } /// /// 外币金额 /// public decimal ForeignAmount { get; set; } /// /// 人民币币金额 /// public decimal RMBAmount { get; set; } } }