Grp_VisaInfo.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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_VisaInfo")]
  12. public class Grp_VisaInfo:EntityBase
  13. {
  14. /// <summary>
  15. /// 团组外键编号
  16. /// </summary>
  17. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  18. public int DIId { get; set; }
  19. /// <summary>
  20. /// 签证客户
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")]
  23. public string VisaClient { get; set; }
  24. /// <summary>
  25. /// 签证费用
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  28. public decimal VisaPrice { get; set; }
  29. /// <summary>
  30. /// 币种
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  33. public int VisaCurrency { get; set; }
  34. /// <summary>
  35. /// 是否第三方支付
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  38. public int IsThird { get; set; }
  39. /// <summary>
  40. /// 签证人员类型
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  43. public int PassengerType { get; set; }
  44. /// <summary>
  45. /// 办理签证人数
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  48. public int VisaNumber { get; set; }
  49. /// <summary>
  50. /// 免签人数
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  53. public int VisaFreeNumber { get; set; }
  54. }
  55. }