刘光辉
13 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
28
29
30
31
32
package jnpf.limsMapper;
 
import jnpf.limsEntity.LimsSxtKanbanOptionVo;
import jnpf.limsEntity.LimsSxtKanbanRowVo;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
@Mapper
public interface LimsSxtKanbanMapper {
 
    List<LimsSxtKanbanOptionVo> selectSampleTypes(@Param("tenantId") String tenantId);
 
    List<LimsSxtKanbanOptionVo> selectWorkshops(@Param("tenantId") String tenantId,
                                                 @Param("sampleTypeId") String sampleTypeId);
 
    List<LimsSxtKanbanOptionVo> selectPlaces(@Param("tenantId") String tenantId,
                                              @Param("sampleTypeId") String sampleTypeId,
                                              @Param("workshopId") String workshopId);
 
    List<LimsSxtKanbanOptionVo> selectPoints(@Param("tenantId") String tenantId,
                                              @Param("sampleTypeId") String sampleTypeId,
                                              @Param("workshopId") String workshopId,
                                              @Param("place") String place);
 
    List<LimsSxtKanbanRowVo> selectRows(@Param("tenantId") String tenantId,
                                         @Param("sampleTypeId") String sampleTypeId,
                                         @Param("workshopId") String workshopId,
                                         @Param("place") String place,
                                         @Param("pointCode") String pointCode);
}