Res_CountryFeeCost.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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.Resource
  7. {
  8. /// <summary>
  9. /// 签证费用资料
  10. /// </summary>
  11. [SugarTable("Res_CountryFeeCost")]
  12. public class Res_CountryFeeCost:EntityBase
  13. {
  14. /// <summary>
  15. /// 洲名
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  18. public string VisaContinent { get; set; }
  19. /// <summary>
  20. /// 国家名
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  23. public string VisaCountry { get; set; }
  24. /// <summary>
  25. /// 是否免签免签 0:是 1:否
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  28. public int IsVisaExemption { get; set; }
  29. /// <summary>
  30. /// 是否落地签 0:是 1:否
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  33. public int IsVisaOnArrival { get; set; }
  34. /// <summary>
  35. /// 是否电子签 0:是 1:否
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  38. public int IsElectronicSignature { get; set; }
  39. /// <summary>
  40. /// 签证费用
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  43. public decimal VisaPrice { get; set; }
  44. /// <summary>
  45. /// 签证费用描述
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")]
  48. public string VisaPriceDesc { get; set; }
  49. /// <summary>
  50. /// 签证类型 大公务/小公务/大小公务同时免签
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  53. public string VisaType { get; set; }
  54. /// <summary>
  55. /// 大公务代办费
  56. /// 新增字段
  57. /// 雷怡 2024-05-07 15:45:09
  58. /// </summary>
  59. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  60. public decimal GrandBusinessAgencyFee { get; set; }
  61. /// <summary>
  62. /// 小公务代办费
  63. /// 新增字段
  64. /// 雷怡 2024-05-07 15:45:09
  65. /// </summary>
  66. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  67. public decimal PettyBusinessAgencyFee { get; set; }
  68. /// <summary>
  69. /// 一般签证时间
  70. /// </summary>
  71. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  72. public string VisaTime { get; set; }
  73. /// <summary>
  74. /// 签证是否加急 0:加急 1: 不加急
  75. /// </summary>
  76. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  77. public int IsUrgent { get; set; }
  78. /// <summary>
  79. /// 加急时间
  80. /// </summary>
  81. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  82. public string UrgentTime { get; set; }
  83. /// <summary>
  84. /// 加急费用
  85. /// </summary>
  86. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  87. public decimal UrgentPrice { get; set; }
  88. /// <summary>
  89. /// 加急费用描述
  90. /// </summary>
  91. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")]
  92. public string UrgentPriceDesc { get; set; }
  93. /// <summary>
  94. /// 签证地址
  95. /// </summary>
  96. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(255)")]
  97. public string VisaAddress { get; set; }
  98. /// <summary>
  99. /// 最后更新时间
  100. /// </summary>
  101. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
  102. public string LastUpdateTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  103. }
  104. }