| | |
| | | |
| | | <!-- 主视图A的通用查询映射结果 --> |
| | | <resultMap id="PakoutMainResultMap" type="com.zy.asrs.entity.result.OrderPakoutMainVo"> |
| | | <id column="id" property="id" jdbcType="BIGINT"/> |
| | | <result column="id" property="id" jdbcType="BIGINT"/> |
| | | <result column="row" property="row" jdbcType="BIGINT"/> |
| | | <result column="item_name" property="itemName" jdbcType="VARCHAR"/> |
| | | <result column="order_count" property="orderCount" jdbcType="INTEGER"/> |
| | | <result column="uuid" property="uuid" jdbcType="VARCHAR"/> |
| | |
| | | <if test="status != null and status != ''"> |
| | | AND status = #{status} |
| | | </if> |
| | | AND row between ((#{pageNumber}-1)*#{pageSize}+1) and (#{pageNumber}*#{pageSize}) |
| | | ORDER BY create_time DESC |
| | | </select> |
| | | |