| | |
| | | </if> |
| | | </where> |
| | | |
| | | order by id desc |
| | | order by |
| | | <if test="orderBy == null "> |
| | | id desc |
| | | </if> |
| | | <if test="orderBy == 'desc'"> |
| | | ${field} desc |
| | | </if> |
| | | <if test="orderBy == 'asc'"> |
| | | ${field} |
| | | </if> |
| | | limit #{offset},#{pageSize} |
| | | ; |
| | | </select> |
| | |
| | | <update id="updateProductStateById"> |
| | | update product set state = #{state} where id = #{id} |
| | | </update> |
| | | |
| | | <select id="getGlassThickness"> |
| | | select sum(REPLACE(JSON_UNQUOTE(JSON_EXTRACT(separation, '$.thickness')),'mm','')) |
| | | from product_detail as a |
| | | where a.prod_id = #{productId} |
| | | and a.id <= (select b.id |
| | | from product_detail as b |
| | | where b.prod_id = #{productId} and b.glass_sort = #{technologyNumber}) |
| | | |
| | | </select> |
| | | </mapper> |