using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组-出入境费用报价表 /// [SugarTable("Grp_EnterExitCostQuote", "团组-出入境费用报价表")] public class Grp_EnterExitCostQuote : EntityBase { /// /// 报价名称 /// [SugarColumn(ColumnName = "Name", ColumnDescription = "报价名称", IsNullable = true, ColumnDataType = "varchar(120)")] public string Name { get; set; } /// /// 团组Id /// [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id", IsNullable = true, ColumnDataType = "int")] public int GroupId { get; set; } /// /// 多个币种存储 /// 存储方式: 美元(USD):6.2350|.......|墨西哥比索(MXN):1.0000 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string? CurrencyRemark { get; set; } } }