package com.smartor.domain; 
 | 
  
 | 
import com.fasterxml.jackson.annotation.JsonFormat; 
 | 
import com.ruoyi.common.annotation.Excel; 
 | 
import com.ruoyi.common.core.domain.BaseEntity; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * 【请填写功能名称】对象 service_patient_temp 
 | 
 * 
 | 
 * @author lihu 
 | 
 * @date 2024-12-03 
 | 
 */ 
 | 
@Data 
 | 
@ApiModel("【请填写功能名称】") 
 | 
public class ServicePatientTemp extends BaseEntity { 
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
    /** 
 | 
     * $column.columnComment 
 | 
     */ 
 | 
    @ApiModelProperty("$column.columnComment") 
 | 
    //数据库自增改成@TableId(type = IdType.AUTO) 
 | 
    private Long id; 
 | 
  
 | 
    /** 
 | 
     * 患者ID 
 | 
     */ 
 | 
    @ApiModelProperty("患者ID") 
 | 
    @Excel(name = "患者ID") 
 | 
    private Long userId; 
 | 
  
 | 
    /** 
 | 
     * 模板ID 
 | 
     */ 
 | 
    @ApiModelProperty("模板ID") 
 | 
    @Excel(name = "模板ID") 
 | 
    private Long tempId; 
 | 
  
 | 
    /** 
 | 
     * 模板类型:    1:ivr    2:svy 
 | 
     */ 
 | 
    @ApiModelProperty("模板类型:    1:ivr    2:svy") 
 | 
    @Excel(name = "模板类型:    1:ivr    2:svy") 
 | 
    private Integer type; 
 | 
  
 | 
    /** 
 | 
     * 开始时间 
 | 
     */ 
 | 
    @ApiModelProperty("开始时间") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") 
 | 
    @Excel(name = "开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") 
 | 
    private Date startTime; 
 | 
  
 | 
    /** 
 | 
     * 结束时间 
 | 
     */ 
 | 
    @ApiModelProperty("结束时间") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") 
 | 
    @Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") 
 | 
    private Date endTime; 
 | 
  
 | 
    /** 
 | 
     * 间隔天数 
 | 
     */ 
 | 
    @ApiModelProperty("间隔天数") 
 | 
    @Excel(name = "间隔天数") 
 | 
    private Long dayNum; 
 | 
  
 | 
    /** 
 | 
     * 0未删除    1删除 
 | 
     */ 
 | 
    @ApiModelProperty("0未删除    1删除") 
 | 
    private String delFlag; 
 | 
  
 | 
} 
 |