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

89 lines
2.0 KiB
C#

using Myshipping.Core;
using System.ComponentModel;
namespace Myshipping.Application.Service.Fee.Dto
{
public class FeeCurrencyDto
{
/// <summary>
/// ID
/// </summary>
public long Id { get; set; }
/// <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
{
/// <summary>
/// 币别代码
/// </summary>
[Description("币别代码")]
public string CodeName { get; set; }
/// <summary>
/// 币别名称
/// </summary>
[Description("币别名称")]
public string Name { get; set; }
}
/// <summary>
/// 台账列表
/// </summary>
public class FeeCurrencyPageOutput : FeeCurrencyDto
{
}
/// <summary>
/// 保存
/// </summary>
public class FeeCurrencySaveDto : FeeCurrencyDto
{
}
/// <summary>
/// 币别列表查询
/// </summary>
public class FeeCurrencyCacheDto : FeeCurrencyDto
{
public long TenantId { get; set; }
}
}