| | |
| | | package com.ruoyi.system.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import com.ruoyi.common.core.domain.BaseModel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @TableName("t_template_detail") |
| | | @ApiModel(value="TTemplateDetail对象", description="任务模板详情") |
| | | public class TTemplateDetail extends BaseModel { |
| | | public class TTemplateDetail implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | @TableField("num3") |
| | | private Integer num3; |
| | | |
| | | @ApiModelProperty(value = "点位类型覆盖率json {\n" + |
| | | "\t\"num5\": [{\n" + |
| | | @ApiModelProperty(value = "点位类型覆盖率json [{\n" + |
| | | "\t\t\"id\": \"18678093453\",\n" + |
| | | "\t\t\"value\": 18\n" + |
| | | "\n" + |
| | | "\t}, {\n" + |
| | | "\t\t\"id\": \"18678093453\",\n" + |
| | | "\t\t\"value\": 18\n" + |
| | | "\t}]\n" + |
| | | "\n" + |
| | | "}") |
| | | "\t\t\"value\": 18\n" + "}]\n") |
| | | @TableField("num4") |
| | | private String num4; |
| | | |
| | |
| | | @TableField("template_id") |
| | | private String templateId; |
| | | |
| | | @ApiModelProperty(value = "当前周期值") |
| | | @TableField("current_value") |
| | | private Integer currentValue; |
| | | @ApiModelProperty(value = "记录创建人,前端忽略") |
| | | @TableField(value = "create_by", fill = FieldFill.INSERT) |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 新增和更新执行 |
| | | */ |
| | | @ApiModelProperty(value = "记录修改人,前端忽略") |
| | | @TableField(value = "update_by", fill = FieldFill.INSERT_UPDATE) |
| | | private String updateBy; |
| | | /** |
| | | * 删除 未删除 |
| | | */ |
| | | @JsonIgnore |
| | | @TableField("`disabled`") |
| | | @TableLogic |
| | | private Boolean disabled; |
| | | |
| | | @ApiModelProperty(value = "记录创建时间,前端忽略") |
| | | @TableField("create_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime createTime; |
| | | |
| | | /** |
| | | * 最后修改时间 |
| | | */ |
| | | @ApiModelProperty(value = "记录修改时间,前端忽略") |
| | | @TableField("update_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime updateTime; |
| | | } |