using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组汇率表 /// [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(50)")] public string OtherRate { get; set; } /// /// 其他汇率金额 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string OtherPrice { get; set; } /// /// 美元汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateU { get; set; } /// /// 欧元汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateE { get; set; } /// /// 日元汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateJ { get; set; } /// /// 港币汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateH { get; set; } /// /// 新西兰元汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateN { get; set; } /// /// 新加坡币汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateS { get; set; } /// /// 澳大利亚元汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateA { get; set; } /// /// 加拿大元汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateC { get; set; } /// /// 泰铢汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateT { get; set; } /// /// 波兰汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateBL { get; set; } /// /// 韩币 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateHB { get; set; } /// /// 斐济币汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateFJD { get; set; } /// /// 土耳其币汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateTL { get; set; } /// /// 卢比汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateRP { get; set; } /// /// 菲律宾汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RatePeso { get; set; } /// /// 马来西亚汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateMYR { get; set; } /// /// 捷克币汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateCZK { get; set; } /// /// 墨西哥币汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateMXN { get; set; } /// /// 澳门元 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateMOP { get; set; } /// /// 阿根廷比索 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateARS { get; set; } /// /// 匈牙利货币 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateHUF { get; set; } /// /// 俄罗斯卢布 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string RateRUB { get; set; } } }