using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Financial
{
///
/// 团组汇率表
///
[SugarTable("Grp_TeamRate")]
public class Grp_TeamRate : EntityBase
{
///
/// 团组id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int DiId { get; set; }
///
/// 团组指向分类
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int CTable { get; set; }
///
/// 其他汇率名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string OtherRateCode { get; set; }
///
/// 其他汇率金额
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal OtherPrice { get; set; }
///
/// 美元汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateU { get; set; }
///
/// 欧元汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateE { get; set; }
///
/// 日元汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateJ { get; set; }
///
/// 港币汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateH { get; set; }
///
/// 新西兰元汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateN { get; set; }
///
/// 新加坡币汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateS { get; set; }
///
/// 澳大利亚元汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateA { get; set; }
///
/// 加拿大元汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateC { get; set; }
///
/// 泰铢汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateT { get; set; }
///
/// 波兰汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateBL { get; set; }
///
/// 韩币
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateHB { get; set; }
///
/// 斐济币汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateFJD { get; set; }
///
/// 土耳其币汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateTL { get; set; }
///
/// 卢比汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateRP { get; set; }
///
/// 菲律宾汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RatePeso { get; set; }
///
/// 马来西亚汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateMYR { get; set; }
///
/// 捷克币汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateCZK { get; set; }
///
/// 墨西哥币汇率
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateMXN { get; set; }
///
/// 澳门元
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateMOP { get; set; }
///
/// 阿根廷比索
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateARS { get; set; }
///
/// 匈牙利货币
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateHUF { get; set; }
///
/// 俄罗斯卢布
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")]
public decimal RateRUB { get; set; }
}
}