KKSU
2024-07-22 4575ae4dbedd7046f4b7aeeb79b49059676e2201
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.dapp.mapper;
 
import cc.mrbird.febs.dapp.entity.DataDictionaryCustom;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface DataDictionaryCustomMapper extends BaseMapper<DataDictionaryCustom> {
 
    List<DataDictionaryCustom> selectDicByType(String type);
 
    DataDictionaryCustom selectNextAgentLevelInfo(@Param("level") String agentLevel);
 
    DataDictionaryCustom selectDicDataByTypeAndCode(@Param("type") String type, @Param("code") String code);
 
    int updateDicValueByTypeAndCode(@Param("type") String type, @Param("code") String code, @Param("value") String value);
}