| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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 java.io.Serializable;
- import java.math.BigDecimal;
- /**
- * 驾意险
- *
- * @TableName ins_accidental_driving
- */
- @TableName(value = "ins_accidental_driving")
- @Data
- public class InsAccidentalDriving implements Serializable {
- private static final long serialVersionUID = 2549273518435897774L;
- /**
- *
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 编号
- */
- @TableField(value = "ride_risk_code")
- private Integer rideRiskCode;
- /**
- * 名称
- */
- @TableField(value = "ride_risk_name")
- private String rideRiskName;
- /**
- * 最大载客数
- */
- @TableField(value = "seat_num_max")
- private Integer seatNumMax;
- /**
- * 最小载客数
- */
- @TableField(value = "seat_num_min")
- private Integer seatNumMin;
- /**
- * 最大可购买份数
- */
- @TableField(value = "max_num")
- private Integer maxNum;
- /**
- * 单份保单价格
- */
- @TableField(value = "unit_premium")
- private BigDecimal unitPremium;
- /**
- * 单份保费
- */
- @TableField(value = "insurance_amount")
- private BigDecimal insuranceAmount;
- @TableField(value = "company_code")
- private BigDecimal companyCode;
- }
|