| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.ydtech.modules.order.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import javax.persistence.Table;
- import java.io.Serializable;
- /**
- * 驾意险实体类
- */
- @TableName(value = "ins_driving_intention_insurance")
- @Data
- public class InsDrivingIntentionInsurance implements Serializable {
- private static final long serialVersionUID = 2549373518435897775L;
- /**
- * id
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 父id
- */
- @TableField(value = "parent_id")
- private Integer parentId;
- @TableField(value = "company_id")
- private String companyId;
- /**
- * 产品名称
- */
- @TableField(value = "project_name")
- private String projectName;
- /**
- * 产品code
- */
- @TableField(value = "project_code")
- private String projectCode;
- /**
- * 附加code
- */
- @TableField(value = "risk_code")
- private String riskCode;
- /**
- * 座位数
- */
- @TableField(value = "seat_num")
- private String seatNum;
- /**
- * 保额
- */
- @TableField(value = "sum_amount")
- private String sumAmount;
- /**
- * 保费
- */
- @TableField(value = "sum_premium")
- private String sumPremium;
- @TableField(value = "request_data")
- private String requestData;
- }
|