| | |
| | |
|
| | | <select id="listRiskAndPeoplePage" resultMap="Result">
|
| | | select * from risk_and_people_info where delete_status = 0
|
| | | <if test="reqBO.hazardName != null and reqBO.hazardName != '' ">
|
| | | and hazard_name like "%" #{reqBO.hazardName} "%"
|
| | | </if>
|
| | | <if test="reqBO.hazardRank != null and reqBO.hazardRank != '' ">
|
| | | and hazard_rank = #{reqBO.hazardRank}
|
| | | </if>
|
| | | <if test="reqBO.id != null and reqBO.id != '' ">
|
| | | and id = #{reqBO.id}
|
| | | </if>
|
| | | </select>
|
| | |
|
| | |
|
| | | <select id="selectRiskAndPeopleInfoById" resultMap="Result">
|
| | | select * from risk_and_people_info where delete_status = 0 and id = #{id}
|
| | | </select>
|
| | |
|
| | |
|