Grp_VisaFeeInfo.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. /// 代办费
  34. /// </summary>
  35. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  36. public decimal AgencyFee { get; set; }
  37. /// <summary>
  38. /// 其他费用
  39. /// </summary>
  40. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  41. public decimal OtherFee { get; set; }
  42. }
  43. }