Grp_VisaInfo.cs 1.7 KB

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