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