| | |
| | | <result column="store_min" property="storeMin" /> |
| | | <result column="store_max_date" property="storeMaxDate" /> |
| | | <result column="inout_everyday" property="inoutEveryday" /> |
| | | <result column="man_type" property="manType" /> |
| | | <result column="mat_type" property="matType" /> |
| | | </resultMap> |
| | | |
| | | <select id="listByPage" resultMap="BaseResultMap"> |
| | |
| | | <if test="specs != null and specs != ''"> |
| | | and mm.specs like concat('%',#{specs},'%') |
| | | </if> |
| | | <if test="matType != null and matType != ''"> |
| | | and mm.mat_type = #{matType} |
| | | </if> |
| | | ORDER BY mm.inout_everyday desc, mm.create_time DESC |
| | | </select> |
| | | |