|  |  | 
 |  |  | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  |  | 
 |  |  | import javax.validation.constraints.NotBlank; | 
 |  |  | import java.util.List; | 
 |  |  |  | 
 |  |  | public interface DataDictionaryCustomMapper extends BaseMapper<DataDictionaryCustom> { | 
 |  |  | 
 |  |  |     List<AdminAgentLevelOptionTreeVo> getAgentLevelOption(); | 
 |  |  |  | 
 |  |  |     AdminRankAwardUpdateInfoVo getRankAwardUpdateInfoById(@Param("id")long id); | 
 |  |  |  | 
 |  |  |     int updateDicValueByTypeAndCode(@Param("type") String type, @Param("code") String code, @Param("value") String value); | 
 |  |  | } |