wangting
2023-07-12 99ef2c53e2b64b8ba342eb2abebfab28ccc31b9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.vci.ubcs.code.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.vci.ubcs.code.entity.CodeSerialValue;
import com.vci.ubcs.code.entity.CodeSynonymEntity;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 流水的值数据操作层
 *
 * @author ludc
 * @date 2022-03-01
 */
public interface CodeSerialValueMapper  extends BaseMapper<CodeSerialValue> {
 
 
    List<CodeSerialValue> selectByCodeRoleId(@Param("codeRuleOid") String codeRuleOid);
 
 
}