|
|
|
@ -37,6 +37,19 @@ public class FeeCurrencyExchange: BaseOrgModel<long>
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "海关汇率", IsNullable = true, Length = 18, DecimalDigits = 6, DefaultValue = "0")]
|
|
|
|
|
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>
|
|
|
|
|