Commit 6bf518c1 authored by maoying's avatar maoying

修改风险排序

parent ab9131bb
spring.application.name = AMOS-AUTOSYS
server.port = 8083
spring.profiles.active=dev
#spring.freemarker.cache=false
......
......@@ -599,7 +599,7 @@
f_risk_source rs
LEFT JOIN f_risk_level rl ON rl.id = rs.risk_level_id
WHERE rs.parent_id > 0
order by rs.id
order by rs.sort_num,rs.id
</select>
<select id="queryByFactor" resultType="com.yeejoin.amos.fas.dao.entity.RiskSource">
SELECT
......@@ -637,7 +637,7 @@
WHERE
parent_id = 0 and org_code = #{compCode}
)
ORDER BY sort_num ASC,id DESC
ORDER BY sort_num,id
</select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment