using Myshipping.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service.Fee.Dto
{
public class FeeCurrencyExchangeDto
{
///
/// ID
///
public long Id { get; set; }
///
/// 币别代码
///
[Description("币别代码")]
public string Currency { get; set; }
///
/// 应收汇率
///
[Description("应收汇率")]
public decimal DrValue { get; set; }
///
/// 开始日期
///
[Description("开始日期")]
public DateTime StartTime { get; set; }
///
/// 结束日期
///
[Description("结束日期")]
public DateTime EndTime { get; set; }
///
/// 应付汇率
///
[Description("应付汇率")]
public decimal CrValue { get; set; }
///
/// 本位币
///
[Description("本位币")]
public string LocalCurr { get; set; }
///
/// 备注
///
[Description("备注")]
public string Remark { get; set; }
}
///
/// 查询
///
public class FeeCurrencyExchangePageInput: PageInputBase
{
///
/// 币别代码
///
[Description("币别代码")]
public string Currency { get; set; }
///
/// 开始日期起始
///
[Description("开始日期")]
public DateTime? StartTimeBegin { get; set; }
///
/// 开始日期截止
///
[Description("开始日期")]
public DateTime? StartTimeEnd { get; set; }
///
/// 结束日期起始
///
[Description("结束日期")]
public DateTime? EndTimeBegin { get; set; }
///
/// 结束日期截止
///
[Description("结束日期")]
public DateTime? EndTimeEnd { get; set; }
}
///
/// 台账列表
///
public class FeeCurrencyExchangePageOutput: FeeCurrencyExchangeDto
{
}
///
/// 保存
///
public class FeeCurrencyExchangeSaveDto: FeeCurrencyExchangeDto
{
}
}