liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
smartor/src/main/java/com/smartor/domain/ServiceTask.java
@@ -8,6 +8,7 @@
import lombok.Data;
import java.util.Date;
import java.util.List;
/**
 * 语音任务对象 ivr_task
@@ -15,7 +16,7 @@
 * @author smartor
 * @date 2023-03-24
 */
@ApiModel(value = "ServiceTask" , description = "任务对象")
@ApiModel(value = "ServiceTask", description = "任务对象")
@Data
public class ServiceTask extends BaseEntity {
    private static final long serialVersionUID = 1L;
@@ -119,18 +120,18 @@
     *
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "  " , width = 30, dateFormat = "yyyy-MM-dd")
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "添加时间")
    private Date addtime;
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "  " , width = 30, dateFormat = "yyyy-MM-dd")
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "开始时间")
    private Date beginTime;
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "  " , width = 30, dateFormat = "yyyy-MM-dd")
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "结束时间")
    private Date endTime;
@@ -152,7 +153,7 @@
     * 审核人时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "  " , width = 30, dateFormat = "yyyy-MM-dd")
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "审核人时间")
    private Date checktime;
@@ -213,6 +214,13 @@
    private String deptcode;
    /**
     * 部门名称
     */
    @Excel(name = "部门名称")
    @ApiModelProperty(value = "部门名称")
    private String deptname;
    /**
     * 删除
     */
    @ApiModelProperty(value = "删除")
@@ -229,7 +237,7 @@
     * 上传时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = " 上传时间 " , width = 30, dateFormat = "yyyy-MM-dd")
    @Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "上传时间")
    private Date uploadTime;
@@ -273,7 +281,7 @@
     */
    @Excel(name = " 发送状态: 1创建   2执行中   3 暂停   4终止  5完成 ")
    @ApiModelProperty(value = "发送状态: 1创建   2执行中   3 暂停   4终止  5完成 ")
    private Integer sendState;
    private Long sendState;
//    /**
//     * 文本变量参数
@@ -339,4 +347,23 @@
    @ApiModelProperty(value = "展示日期")
    private String showDate;
    @ApiModelProperty(value = "开场白")
    private String kcb;
    @ApiModelProperty(value = "结束语")
    private String jsy;
    /**
     * 出院病区编号
     */
    @ApiModelProperty(value = "出院病区编号集合")
    private String leavehospitaldistrictcode;
    /**
     * 出院病区名称
     */
    @ApiModelProperty(value = "出院病区名称")
    @Excel(name = " 出院病区名称 ")
    private String leavehospitaldistrictname;
}