You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.2 KiB
27 lines
1.2 KiB
<?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.hisense.hiatmp.server_api.mapper.ConfigMapper"> |
|
<select id="getModuleCustomConfigList" resultType="com.hisense.hiatmp.server_api.model.ModuleCustomConfig"> |
|
select * from module_custom_config |
|
</select> |
|
|
|
<select id="getStreetCommunity" resultType="com.hisense.hiatmp.server_api.model.StreetCommunity"> |
|
select DISTINCT xqcode,xqname,jdcode,jdname from tlv_street_community; |
|
</select> |
|
|
|
<select id="getStreetCommunityById" resultType="com.hisense.hiatmp.server_api.model.StreetCommunity"> |
|
select DISTINCT * from tlv_street_community |
|
where xqcode = #{xqcode} and jdcode = #{jdcode} |
|
</select> |
|
|
|
<select id="getStreetCommunityByXq" resultType="com.hisense.hiatmp.server_api.model.StreetCommunity"> |
|
select DISTINCT xqcode,xqname,jdcode,jdname from tlv_street_community where xqcode = #{xqcode}; |
|
</select> |
|
|
|
<select id="getDangerBaseData" resultType="com.hisense.hiatmp.model.dmr.LineInfo"> |
|
select * from bis_section where section_code = #{sectionCode}; |
|
</select> |
|
</mapper> |