ludc
2023-09-08 caeb0c1b3666655e2e05292c2fcaef82a9808cd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.vci.ubcs.code.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.vci.ubcs.code.entity.CodeClassifyValue;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 分类码段的码值数据操作层
 *
 * @author ludc
 * @date 2022-01-24
 */
public interface CodeClassifyValueMapper extends BaseMapper<CodeClassifyValue> {
 
    List<String> selectAllLevelChildOid(@Param("oid") String oid);
 
    Long countAllLevelChildOid(@Param("oid") String oid);
 
    String getClassifyValueStr(@Param("oid") String oid);
 
}