using DS.Module.Core;
using SqlSugar;
namespace DS.WMS.Core.Fee.Dtos;
///
/// 币别信息返回实体
///
public class FeeCurrencyRes
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 币别代码
///
public string CodeName { get; set; }
///
/// 币别名称
///
public string Name { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 财务软件代码
///
public string FinanceSoftCode { get; set; }
///
/// 默认对人民币汇率
///
public decimal? DefaultRate { get; set; }
///
/// 状态 0 启用 1 禁用
///
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
///
/// 备注
///
public string Note { get; set; } = "";
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}