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.
63 lines
1.8 KiB
C#
63 lines
1.8 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", TableDescription = "币别")]
|
||
|
public class FeeCurrency : DBEntityTenant
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 币别代码
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "CodeName")]
|
||
|
[Description("币别代码")]
|
||
|
public string CodeName{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 币别名称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "Name")]
|
||
|
[Description("币别名称")]
|
||
|
public string Name{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 描述
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "Description")]
|
||
|
[Description("描述")]
|
||
|
public string Description{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 默认对人民币汇率;录入费用时如果汇率设置里没有设置汇率,提此处汇率
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "DefaultRate")]
|
||
|
[Description("默认对人民币汇率;录入费用时如果汇率设置里没有设置汇率,提此处汇率")]
|
||
|
public decimal DefaultRate{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 财务软件对应代码
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "FinanceSoftCode")]
|
||
|
[Description("财务软件对应代码")]
|
||
|
public string FinanceSoftCode{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 租户名称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnName = "TenantName")]
|
||
|
[Description("租户名称")]
|
||
|
public string TenantName{ get; set; }
|
||
|
|
||
|
}
|
||
|
}
|