| | |
| | | package com.whyc.pojo.db_ckpwrdev_data_rt; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty(value = "操作类型") |
| | | private int cmdType; |
| | | |
| | | @TableField(exist = false) |
| | | private String cmdName; |
| | | |
| | | @ApiModelProperty(value = "被设置的参数") |
| | | private String param; |
| | | |
| | |
| | | @ApiModelProperty(value = "参数的状态") |
| | | private Integer st; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Date createTime; |
| | | |
| | | @TableField(exist = false) |
| | | private Date createTime1; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date createDay; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | private int pageNum; |
| | | |
| | | @TableField(exist = false) |
| | | private int pageSize; |
| | | |
| | | |
| | | } |