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