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.
BookingHeChuan/Myshipping.Application/Service/Fee/Dto/FeeCurrencyDto.cs

81 lines
1.8 KiB
C#

10 months ago
using Myshipping.Core;
using System.ComponentModel;
namespace Myshipping.Application.Service.Fee.Dto
{
public class FeeCurrencyDto
{
/// <summary>
/// ID
/// </summary>
public long Id { get; set; }
10 months ago
/// <summary>
/// 币别代码
/// </summary>
[Description("币别代码")]
public string CodeName { get; set; }
/// <summary>
/// 币别名称
/// </summary>
[Description("币别名称")]
public string Name { get; set; }
/// <summary>
/// 描述
/// </summary>
[Description("描述")]
public string Description { get; set; }
/// <summary>
/// 默认对人民币汇率;录入费用时如果汇率设置里没有设置汇率,提此处汇率
/// </summary>
[Description("默认对人民币汇率;录入费用时如果汇率设置里没有设置汇率,提此处汇率")]
public decimal DefaultRate { get; set; }
/// <summary>
/// 财务软件对应代码
/// </summary>
[Description("财务软件对应代码")]
public string FinanceSoftCode { get; set; }
}
/// <summary>
/// 查询
/// </summary>
public class FeeCurrencyPageInput : PageInputBase
10 months ago
{
/// <summary>
/// 币别代码
/// </summary>
[Description("币别代码")]
public string CodeName { get; set; }
/// <summary>
/// 币别名称
/// </summary>
[Description("币别名称")]
public string Name { get; set; }
}
/// <summary>
/// 台账列表
/// </summary>
public class FeeCurrencyPageOutput : FeeCurrencyDto
10 months ago
{
10 months ago
}
/// <summary>
/// 保存
/// </summary>
public class FeeCurrencySaveDto : FeeCurrencyDto
10 months ago
{
}
}