|
@@ -9,6 +9,7 @@ import org.apache.ibatis.annotations.Param;
|
|
|
import org.apache.ibatis.annotations.Update;
|
|
|
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -19,7 +20,7 @@ import java.util.List;
|
|
|
* @since 2021-04-19
|
|
|
*/
|
|
|
public interface TaskMapper extends BaseMapper<Task> {
|
|
|
- List getExecutorPanel(Integer projectId);
|
|
|
+ List<Map<String,Object>> getExecutorPanel(Integer projectId);
|
|
|
List getStagesPanel(Integer projectId);
|
|
|
List getTopCostTask(Integer projectId);
|
|
|
|
|
@@ -44,7 +45,7 @@ public interface TaskMapper extends BaseMapper<Task> {
|
|
|
|
|
|
List<Task> selectMilepost(@Param("ids") List<Integer> ids);
|
|
|
|
|
|
- List getExecutorPlanHour(Integer projectId);
|
|
|
+ List<Map<String,Object>> getExecutorPlanHour(Integer projectId);
|
|
|
@Update("update task set start_date =null where id=#{id}")
|
|
|
void updateStartDate(Integer id);
|
|
|
@Update("update task set end_date =null where id=#{id}")
|