|
|
|
@ -2,6 +2,7 @@ package com.research.system.domain.dto; |
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollectionUtil; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.research.common.utils.SecurityUtils; |
|
|
|
import com.research.system.domain.po.TaskDeliverable; |
|
|
|
import com.research.system.domain.po.TaskExecutor; |
|
|
|
import com.research.system.domain.po.TaskList; |
|
|
|
@ -32,7 +33,11 @@ public class TaskDto { |
|
|
|
|
|
|
|
private Date startTime; |
|
|
|
private Date endTime; |
|
|
|
|
|
|
|
@ApiModelProperty("是否我的任务 0全部 1我的") |
|
|
|
private Byte isMine; |
|
|
|
private String getUserName(){ |
|
|
|
return SecurityUtils.getUsername(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Data |
|
|
|
|