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.
116 lines
2.6 KiB
C#
116 lines
2.6 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 币别代码
|
|
/// </summary>
|
|
[Description("币别代码")]
|
|
public string Currency { get; set; }
|
|
|
|
/// <summary>
|
|
/// 应收汇率
|
|
/// </summary>
|
|
[Description("应收汇率")]
|
|
public decimal DrValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
[Description("开始日期")]
|
|
public DateTime StartTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
[Description("结束日期")]
|
|
public DateTime EndTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 应付汇率
|
|
/// </summary>
|
|
[Description("应付汇率")]
|
|
public decimal CrValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 本位币
|
|
/// </summary>
|
|
[Description("本位币")]
|
|
public string LocalCurr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[Description("备注")]
|
|
public string Remark { get; set; }
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询
|
|
/// </summary>
|
|
public class FeeCurrencyExchangePageInput: PageInputBase
|
|
{
|
|
/// <summary>
|
|
/// 币别代码
|
|
/// </summary>
|
|
[Description("币别代码")]
|
|
public string Currency { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 开始日期起始
|
|
/// </summary>
|
|
[Description("开始日期")]
|
|
public DateTime? StartTimeBegin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始日期截止
|
|
/// </summary>
|
|
[Description("开始日期")]
|
|
public DateTime? StartTimeEnd { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期起始
|
|
/// </summary>
|
|
[Description("结束日期")]
|
|
public DateTime? EndTimeBegin { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期截止
|
|
/// </summary>
|
|
[Description("结束日期")]
|
|
public DateTime? EndTimeEnd { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 台账列表
|
|
/// </summary>
|
|
public class FeeCurrencyExchangePageOutput: FeeCurrencyExchangeDto
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 保存
|
|
/// </summary>
|
|
public class FeeCurrencyExchangeSaveDto: FeeCurrencyExchangeDto
|
|
{
|
|
|
|
}
|
|
}
|