| | |
| | | order by id desc |
| | | limit #{pageSize},#{countSize} |
| | | </select> |
| | | <select id="selCountRaw" resultType="java.lang.Integer"> |
| | | select count(id) |
| | | from mom_ocean.raw_inspect |
| | | where state=1 |
| | | and ins_state=1 |
| | | and judge_state=#{judgeState} |
| | | <if test="begin != null and begin!=''"> |
| | | and raw_inspect.create_time >= #{begin} |
| | | </if> |
| | | <if test="end != null and end!=''"> |
| | | and raw_inspect.create_time <= #{end} |
| | | </if> |
| | | </select> |
| | | <select id="seAllCount" resultType="java.lang.Long"> |
| | | select count(id) |
| | | from mom_ocean.raw_inspect |
| | | where state=1 |
| | | <if test="begin != null and begin!=''"> |
| | | and raw_inspect.create_time >= #{begin} |
| | | </if> |
| | | <if test="end != null and end!=''"> |
| | | and raw_inspect.create_time <= #{end} |
| | | </if> |
| | | </select> |
| | | </mapper> |