| | |
| | | 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.util.Date; |
| | |
| | | * 场地责任险有效期 |
| | | */ |
| | | @TableField("insuranceEndTime") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date insuranceEndTime; |
| | | /** |
| | | * 场地责任险图片 |
| | |
| | | * 添加时间 |
| | | */ |
| | | @TableField("insertTime") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date insertTime; |
| | | |
| | | @TableField("operatorId") |
| | | private Integer operatorId; |
| | | @TableField("typeName") |
| | | private String typeName; |
| | | @TableField("nextName") |
| | | private String nextName; |
| | | @TableField("ishalf") |
| | | private Integer ishalf; |
| | | @TableField("cashPriceOne") |
| | | private Double cashPriceOne; |
| | | @TableField("playPaiCoinOne") |
| | | private Double playPaiCoinOne; |
| | | @TableField("halfName") |
| | | private String halfName; |
| | | @TableField("introduce") |
| | | private String introduce; |
| | | @TableField("imgs") |
| | | private String imgs; |
| | | @TableField("ids") |
| | | private String ids; |
| | | @TableField("sign") |
| | | private Integer sign; |
| | | } |