using System;
using System.Collections.Generic;
using SqlSugar;
using Myshipping.Core.Entity;
using System.ComponentModel;
/*
* @author : whm
* @date : 2024-1-22
* @desc : 汇率
*/
namespace Myshipping.Application.Entity
{
///
/// 汇率
///
[SugarTable("fee_currency_exchange", TableDescription = "汇率")]
public class FeeCurrencyExchange : DBEntityTenant
{
///
/// 币别代码
///
[SugarColumn(ColumnName = "Currency")]
[Description("币别代码")]
public string Currency{ get; set; }
///
/// 应收汇率
///
[SugarColumn(ColumnName = "DrValue")]
[Description("应收汇率")]
public decimal DrValue{ get; set; }
///
/// 开始日期
///
[SugarColumn(ColumnName = "StartTime")]
[Description("开始日期")]
public DateTime StartTime{ get; set; }
///
/// 结束日期
///
[SugarColumn(ColumnName = "EndTime")]
[Description("结束日期")]
public DateTime EndTime{ get; set; }
///
/// 应付汇率
///
[SugarColumn(ColumnName = "CrValue")]
[Description("应付汇率")]
public decimal CrValue{ get; set; }
///
/// 本位币
///
[SugarColumn(ColumnName = "LocalCurr")]
[Description("本位币")]
public string LocalCurr{ get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "Remark")]
[Description("备注")]
public string Remark{ get; set; }
///
/// 租户名称
///
[SugarColumn(ColumnName = "TenantName")]
[Description("租户名称")]
public string TenantName{ get; set; }
}
}