You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Op.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 业务币别汇率返回
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BusinessCurrencyExchangeRes
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 币别代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CurrencyCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应收汇率
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? DRValue { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应付汇率
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? CRValue { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 海关汇率
|
|
|
|
|
/// </summary>
|
|
|
|
|
public decimal? CustomValue { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 开始日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结束日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 本位币
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LocalCurrency { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|