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.ApiModelProperty; import lombok.Data; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import java.util.Date; /** * 语音任务对象 ivr_task * * @author smartor * @date 2023-03-24 */ @Data public class IvrTaskVO extends BaseEntity { private static final long serialVersionUID = 1L; /** * */ private Long taskid; /** * */ @Excel(name = " ") private String taskname; /** * */ @Excel(name = " ") private String templateid; /** * */ @Excel(name = " ") private String templatename; /** * */ @Excel(name = " ") private String labelinfo; /** * */ @Excel(name = " ") private Long state; /** * */ @Excel(name = " ") private Long count; /** * */ @Excel(name = " ") private Long executed; /** * */ @Excel(name = " ") private Long unexecuted; /** * */ @Excel(name = " ") private Long fail; /** * */ @Excel(name = " ") private String userid; /** * */ @Excel(name = " ") private String username; /** * */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = " ", width = 30, dateFormat = "yyyy-MM-dd") private Date addtime; /** * */ @Excel(name = " ") private String checkuserid; /** * */ @Excel(name = " ") private String checkusername; /** * */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = " ", width = 30, dateFormat = "yyyy-MM-dd") private Date checktime; /** * 1,出院随访;2,体检通知;3,满意度调查;4,宣教; */ @Excel(name = " 1,出院随访;2,体检通知;3,满意度调查;4,宣教; ") private String type; /** * */ @Excel(name = " ") private String typename; /** * 0.不使用播前短信 1.使用播前短信 */ @Excel(name = " 0.不使用播前短信 1.使用播前短信 ") private Long usebqsms; /** * 0.不使用播后短信 1.使用播前短信 */ @Excel(name = " 0.不使用播后短信 1.使用播前短信 ") private Long usebhsms; /** * */ @Excel(name = " ") private Long usesendsms; /** * */ @Excel(name = " ") private String deptcode; /** * 删除标记 */ private String delFlag; /** * 上传标记 */ @Excel(name = " 上传标记 ") private Long isupload; /** * 上传时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd") private Date uploadTime; /** * 机构ID */ @Excel(name = " 机构ID ") private String orgid; /** * 已发送 */ @Excel(name = " 已发送 ") private Long yfs; /** * 未发送 */ @Excel(name = " 未发送 ") private Long wfs; /** * 就诊类型(1门诊 2出院) */ @Excel(name = " 就诊类型(1门诊 2出院)") @ApiModelProperty(value = "就诊类型(1门诊 2出院 3.专病)") private String hospType; /** * 就诊编号(对应的outhospno、inhospno) */ @Excel(name = " 就诊编号(对应的outhospno、inhospno) ") @ApiModelProperty(value = "就诊编号(对应的outhospno、inhospno)") private String hospno; }