Grp_EnterExitCostQuote.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 团组-出入境费用报价表
  10. /// </summary>
  11. [SugarTable("Grp_EnterExitCostQuote", "团组-出入境费用报价表")]
  12. public class Grp_EnterExitCostQuote : EntityBase
  13. {
  14. /// <summary>
  15. /// 报价名称
  16. /// </summary>
  17. [SugarColumn(ColumnName = "Name", ColumnDescription = "报价名称", IsNullable = true, ColumnDataType = "varchar(120)")]
  18. public string Name { get; set; }
  19. /// <summary>
  20. /// 团组Id
  21. /// </summary>
  22. [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id", IsNullable = true, ColumnDataType = "int")]
  23. public int GroupId { get; set; }
  24. /// <summary>
  25. /// 多个币种存储
  26. /// 存储方式: 美元(USD):6.2350|.......|墨西哥比索(MXN):1.0000
  27. /// </summary>
  28. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  29. public string? CurrencyRemark { get; set; }
  30. }
  31. }