Grp_Customers.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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_Customers")]
  12. public class Grp_Customers: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 = "int")]
  23. public int Iid { get; set; }
  24. /// <summary>
  25. /// 客户名称
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")]
  28. public string ClientName { get; set; }
  29. /// <summary>
  30. /// 保险费用
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  33. public decimal InsuranceCosts { get; set; }
  34. /// <summary>
  35. /// 币种
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  38. public int Currency { get; set; }
  39. /// <summary>
  40. /// 保险附件
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  43. public string Attachment { get; set; }
  44. }
  45. }