提交代码
This commit is contained in:
parent
bee845a2d5
commit
d2e44c042b
|
|
@ -105,6 +105,13 @@ public class AnnotationTaskController extends BaseController {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@GetMapping("/list/listSelection")
|
||||||
|
public AjaxResult listSelection(AnnotationTaskEntity taskEntity) {
|
||||||
|
List<AnnotationTaskEntity> taskList = annotationTaskService.getMyParticipantTaskList(taskEntity);
|
||||||
|
return AjaxResult.success(taskList);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据任务编号获取任务详情,如果是标注人员获取分配的文件列表,如果是审核人员获取所有分配的文件列表,如果是管理员获取所有文件列表
|
* 根据任务编号获取任务详情,如果是标注人员获取分配的文件列表,如果是审核人员获取所有分配的文件列表,如果是管理员获取所有文件列表
|
||||||
|
|
|
||||||
|
|
@ -8,10 +8,10 @@ import lombok.Data;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Component
|
|
||||||
public class AnnotationTaskEntity extends BaseEntity {
|
public class AnnotationTaskEntity extends BaseEntity {
|
||||||
|
|
||||||
/**任务名称*/
|
/**任务名称*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue