| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.ydtech.modules.protocol.entity.po;
- 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 com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- import java.util.Date;
- /**
- * 新车判断规则
- *
- * @TableName ptl_new_car_judge_rules
- */
- @Data
- @TableName(value = "ptl_new_car_judge_rules")
- public class PtlNewCarJudgeRules implements Serializable {
- /**
- * 主键
- */
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- * 归属保司
- */
- @TableField(value = "company_id")
- private String companyId;
- /**
- * 车辆类型
- */
- @TableField(value = "vehicle_type")
- private String vehicleType;
- /**
- * 单位 month-月 day-天
- */
- @TableField(value = "unit_type_code")
- private String unitTypeCode;
- /**
- * 单位值
- */
- @TableField(value = "unit_type_value")
- private String unitTypeValue;
- /**
- * 是否有效(0有效 1 无效)
- */
- @TableField(value = "is_effective")
- private String isEffective;
- /**
- * 保存日期
- */
- @TableField(value = "save_date")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private Date saveDate;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- }
|