InsDrivingIntentionInsurance.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package com.ydtech.modules.order.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import lombok.Data;
  7. import javax.persistence.Table;
  8. import java.io.Serializable;
  9. /**
  10. * 驾意险实体类
  11. */
  12. @TableName(value = "ins_driving_intention_insurance")
  13. @Data
  14. public class InsDrivingIntentionInsurance implements Serializable {
  15. private static final long serialVersionUID = 2549373518435897775L;
  16. /**
  17. * id
  18. */
  19. @TableId(value = "id", type = IdType.AUTO)
  20. private Integer id;
  21. /**
  22. * 父id
  23. */
  24. @TableField(value = "parent_id")
  25. private Integer parentId;
  26. @TableField(value = "company_id")
  27. private String companyId;
  28. /**
  29. * 产品名称
  30. */
  31. @TableField(value = "project_name")
  32. private String projectName;
  33. /**
  34. * 产品code
  35. */
  36. @TableField(value = "project_code")
  37. private String projectCode;
  38. /**
  39. * 附加code
  40. */
  41. @TableField(value = "risk_code")
  42. private String riskCode;
  43. /**
  44. * 座位数
  45. */
  46. @TableField(value = "seat_num")
  47. private String seatNum;
  48. /**
  49. * 保额
  50. */
  51. @TableField(value = "sum_amount")
  52. private String sumAmount;
  53. /**
  54. * 保费
  55. */
  56. @TableField(value = "sum_premium")
  57. private String sumPremium;
  58. @TableField(value = "request_data")
  59. private String requestData;
  60. }