You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
package com.heai.modules.taskmanage.vo;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @Classname TaskListVo
|
|
* @Description TODO
|
|
* @Date 2022/9/13 13:56
|
|
* @Created by sxm
|
|
*/
|
|
@Data
|
|
public class TaskDetailVo {
|
|
|
|
private String site;
|
|
private String department;
|
|
private String customer;
|
|
private String status;
|
|
private String taskHeader;
|
|
private String responsiblePerson;
|
|
private String project;
|
|
private String taskDescription;
|
|
private String taskInitiator;
|
|
private String finalStatus;
|
|
private Date startDate;
|
|
private Date endDate;
|
|
private Date finishStartDate;
|
|
private Date finishEndDate;
|
|
private String chatLastType;
|
|
private Integer id;
|
|
private String orderRef1;
|
|
private String orderRef2;
|
|
private String orderRef3;
|
|
private String orderRefType;
|
|
private String orderRef4;
|
|
private String allowCloseByHand;
|
|
private String taskType;
|
|
private String oldSpec;
|
|
private String newSpec;
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date requiredCompletionDate;
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date taskStartDate;
|
|
|
|
private Date createdDate;
|
|
|
|
private String createdBy;
|
|
|
|
private Date updatedDate;
|
|
|
|
private String updatedBy;
|
|
|
|
private Integer taskId;
|
|
|
|
private String depUserName;
|
|
|
|
|
|
|
|
}
|