标准拆分 分页文本状态 nulL

This commit is contained in:
gaojiabao
2023-04-04 22:59:07 +08:00
parent 602db8cac3
commit 659358908e
5 changed files with 51 additions and 5 deletions
@@ -47,4 +47,5 @@ public interface DicEODao extends BaseMapper<DictionaryEO> {
public List<DictionaryEO> queryByList(DictionaryEOPage page);
List<DictionaryEO> selectbyInfo(String info);
}
@@ -90,4 +90,6 @@ public interface DicTypeEODao extends BaseMapper<DicTypeEO> {
List<DicTypeEO> selectByPidInfo(@Param("pid") String pid);
List<DicTypeEO> selectPidByCode(@Param("fileType") String fileType);
List<DicTypeEO> selectDic(String id);
}
@@ -640,4 +640,13 @@
WHERE
DIC_TYPE_CODE = #{fileType}
</select>
<select id="selectDic" resultType="com.adc.da.sys.entity.DicTypeEO">
SELECT
*
FROM
ts_dictype
WHERE
DIC_ID = #{id}
</select>
</mapper>
@@ -316,4 +316,8 @@
where SAR_STAND_ATTR_DETAILS.valid_flag =0 and TS_DICTIONARY.id=#{id}
</select>
<select id="selectbyInfo" resultType="com.adc.da.sys.entity.DictionaryEO">
select id from TS_DICTIONARY where DICTIONARY_CODE = #{info}
</select>
</mapper>