package com.smartor.domain.VO;
|
|
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;
|
|
/**
|
* 满意度异常处理情况请求对象
|
*
|
* @author lihu
|
* @date 2026-03-24
|
*/
|
@Data
|
@ApiModel("满意度异常处理情况请求对象")
|
public class DetailTraceDealVO extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* 处理科室编号
|
*/
|
@ApiModelProperty("处理科室编号")
|
@Excel(name = "处理科室编号")
|
private String todeptcode;
|
|
/**
|
* 处理科室名称
|
*/
|
@ApiModelProperty("处理科室名称")
|
@Excel(name = "处理科室名称")
|
private String todeptname;
|
|
|
/**
|
* 任务模板ID
|
*/
|
@ApiModelProperty("任务模板ID")
|
@Excel(name = "任务模板ID")
|
private Long templateid;
|
|
/**
|
* 处理时间
|
*/
|
@ApiModelProperty("处理开始时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "处理时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date handleStartTime;
|
/**
|
* 处理时间
|
*/
|
@ApiModelProperty("处理结束时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "处理时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date handleEndTime;
|
|
/**
|
* 问题类型
|
*/
|
@ApiModelProperty("问题分类:(例如,门诊满意度:mzmyd 住院满意度:zymyd ...)")
|
@Excel(name = "问题分类:(例如,门诊满意度:mzmyd 住院满意度:zymyd ...)")
|
private String type;
|
|
}
|