汇率添加核算汇率及发票汇率

dev
cjy 2 weeks ago
parent 5700c5381b
commit a343b4d103

@ -38,6 +38,16 @@ public class FeeCurrencyExchangeReq
/// </summary> /// </summary>
public decimal? CustomValue { get; set; } = 0; public decimal? CustomValue { get; set; } = 0;
/// <summary> /// <summary>
/// 核算汇率
/// </summary>
public decimal? CalculateValue { get; set; }
/// <summary>
/// 发票汇率
/// </summary>
public decimal? InvoiceValue { get; set; }
/// <summary>
/// 开始日期 /// 开始日期
/// </summary> /// </summary>
public DateTime StartDate { get; set; } public DateTime StartDate { get; set; }

@ -36,6 +36,17 @@ public class FeeCurrencyExchangeRes
/// 海关汇率 /// 海关汇率
/// </summary> /// </summary>
public decimal? CustomValue { get; set; } = 0; public decimal? CustomValue { get; set; } = 0;
/// <summary>
/// 核算汇率
/// </summary>
public decimal? CalculateValue { get; set; }
/// <summary>
/// 发票汇率
/// </summary>
public decimal? InvoiceValue { get; set; }
/// <summary> /// <summary>
/// 开始日期 /// 开始日期
/// </summary> /// </summary>

@ -37,6 +37,19 @@ public class FeeCurrencyExchange: BaseOrgModel<long>
/// </summary> /// </summary>
[SugarColumn(ColumnDescription = "海关汇率", IsNullable = true, Length = 18, DecimalDigits = 6, DefaultValue = "0")] [SugarColumn(ColumnDescription = "海关汇率", IsNullable = true, Length = 18, DecimalDigits = 6, DefaultValue = "0")]
public decimal? CustomValue { get; set; } public decimal? CustomValue { get; set; }
/// <summary>
/// 核算汇率
/// </summary>
[SugarColumn(ColumnDescription = "核算汇率", IsNullable = true, Length = 18, DecimalDigits = 6, DefaultValue = "0")]
public decimal? CalculateValue { get; set; }
/// <summary>
/// 发票汇率
/// </summary>
[SugarColumn(ColumnDescription = "发票汇率", IsNullable = true, Length = 18, DecimalDigits = 6, DefaultValue = "0")]
public decimal? InvoiceValue { get; set; }
/// <summary> /// <summary>
/// 开始日期 /// 开始日期
/// </summary> /// </summary>

Loading…
Cancel
Save