xyc
2024-09-13 dea248c9da9f82e4032b6ab4a8ce0a6422a5c2cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.zt.life.modules.mainPart.taskReliability.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.life.modules.mainPart.taskReliability.model.TaskPhase;
import org.apache.ibatis.annotations.Mapper;
 
 
import java.util.List;
import java.util.Map;
 
 
/**
 * task_phase
 *
 * @author zt generator 
 * @since 1.0.0 2024-03-15
 */
@Mapper
public interface TaskPhaseDao extends BaseDao<TaskPhase> {
 
    List<TaskPhase> getList(Map<String, Object> params);
 
    Integer getMaxSort(Long taskId);
 
    List<Long> getPhaseByTask(Long taskId);
    List<TaskPhase> getListByTaskId(Long taskId);
}