Grp_VisaFeeInfo.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. /// 费用详情
  11. /// </summary>
  12. [SugarTable("Grp_VisaFeeInfo")]
  13. public class Grp_VisaFeeInfo:EntityBase
  14. {
  15. /// <summary>
  16. /// 团组Id
  17. /// </summary>
  18. [SugarColumn(IsNullable = true ,ColumnDataType = "int")]
  19. public int DiId { get; set; }
  20. /// <summary>
  21. /// 是否选中
  22. /// 0 未选 1 选中
  23. /// </summary>
  24. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  25. public int IsChecked { get; set; } = 0;
  26. /// <summary>
  27. /// 国家签证费用 Id
  28. /// Res_CountryFeeCost Id
  29. /// </summary>
  30. [SugarColumn(IsNullable = true,ColumnDataType = "int")]
  31. public int CountryVisaFeeId { get; set; }
  32. /// <summary>
  33. /// 代办费 - 公务 类型 1 大公务 2 小公务
  34. /// 新增字段
  35. /// 雷怡 2024-05-07 15:45:09
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  38. public int OBType { get; set; }
  39. /// <summary>
  40. /// 代办费
  41. /// 新增字段
  42. /// 雷怡 2024-05-07 15:45:09
  43. /// </summary>
  44. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  45. public decimal AgencyFee { get; set; }
  46. /// <summary>
  47. /// 其他费用
  48. /// </summary>
  49. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  50. public decimal OtherFee { get; set; }
  51. }
  52. }