package com.ruoyi.system.model;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.ruoyi.common.core.domain.BaseModel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* <p>
|
* 任务模板详情
|
* </p>
|
*
|
* @author xiaochen
|
* @since 2025-05-28
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("t_template_detail")
|
@ApiModel(value="TTemplateDetail对象", description="任务模板详情")
|
public class TTemplateDetail extends BaseModel {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.ASSIGN_ID)
|
private String id;
|
|
@ApiModelProperty(value = "周期值")
|
@TableField("cycle")
|
private Integer cycle;
|
|
@ApiModelProperty(value = "周期 单位 1=天 2=周 3=月 4=季度 5=年度")
|
@TableField("cycle_type")
|
private Integer cycleType;
|
|
@ApiModelProperty(value = "每个保洁员被抽查")
|
@TableField("num1")
|
private Integer num1;
|
|
@ApiModelProperty(value = "项目部数")
|
@TableField("num2")
|
private Integer num2;
|
|
@ApiModelProperty(value = "每日重复点位")
|
@TableField("num3")
|
private Integer num3;
|
|
@ApiModelProperty(value = "点位类型覆盖率json {\n" +
|
"\t\"num5\": [{\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" +
|
"}")
|
@TableField("num4")
|
private String num4;
|
|
@ApiModelProperty(value = "模板id")
|
@TableField("template_id")
|
private String templateId;
|
|
@ApiModelProperty(value = "当前周期值")
|
@TableField("current_value")
|
private Integer currentValue;
|
|
}
|