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.
77 lines
2.0 KiB
C#
77 lines
2.0 KiB
C#
10 months ago
|
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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 汇率
|
||
|
/// </summary>
|
||
|
[SugarTable("fee_currency_exchange", TableDescription = "汇率")]
|
||
|
public class FeeCurrencyExchange : DBEntityTenant
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 币别代码
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "Currency")]
|
||
|
[Description("币别代码")]
|
||
|
public string Currency{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 应收汇率
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "DrValue")]
|
||
|
[Description("应收汇率")]
|
||
|
public decimal DrValue{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 开始日期
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "StartTime")]
|
||
|
[Description("开始日期")]
|
||
|
public DateTime StartTime{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 结束日期
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "EndTime")]
|
||
|
[Description("结束日期")]
|
||
|
public DateTime EndTime{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 应付汇率
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "CrValue")]
|
||
|
[Description("应付汇率")]
|
||
|
public decimal CrValue{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 本位币
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "LocalCurr")]
|
||
|
[Description("本位币")]
|
||
|
public string LocalCurr{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "Remark")]
|
||
|
[Description("备注")]
|
||
|
public string Remark{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 租户名称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "TenantName")]
|
||
|
[Description("租户名称")]
|
||
|
public string TenantName{ get; set; }
|
||
|
|
||
|
}
|
||
|
}
|