2022-06-20 16:26:51 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
|
|
|
|
<mapper namespace="com.cnbm.admin.dao.SysDictDataDao">
|
|
|
|
|
|
|
|
<select id="getDictDataList" resultType="com.cnbm.admin.entity.DictData">
|
2023-02-22 15:59:13 +08:00
|
|
|
select dict_type_id, dict_label, dict_value from sys_dict_data WHERE valid = 1 order by dict_type_id, sort
|
2022-06-20 16:26:51 +08:00
|
|
|
</select>
|
|
|
|
|
|
|
|
</mapper>
|