| | |
| | | <resultMap type="com.matrix.system.shopXcx.bean.ShopActivities" id="ShopActivitiesMap"> |
| | | <id property="id" column="id" /> |
| | | <result property="actName" column="act_name" /> |
| | | <result property="actCode" column="act_code" /> |
| | | <result property="actType" column="act_type" /> |
| | | <result property="actBeginTime" column="act_begin_time" /> |
| | | <result property="actEndTime" column="act_end_time" /> |
| | |
| | | <resultMap type="com.matrix.system.shopXcx.bean.ShopActivities" id="ShopActivitiesSimpleMap"> |
| | | <id property="id" column="id" /> |
| | | <result property="actName" column="act_name" /> |
| | | <result property="actCode" column="act_code" /> |
| | | <result property="actType" column="act_type" /> |
| | | <result property="actBeginTime" column="act_begin_time" /> |
| | | <result property="actEndTime" column="act_end_time" /> |
| | |
| | | </if> |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="findActivitiesList" resultType="com.matrix.system.activity.vo.ActivitiesListVo"> |
| | | SELECT |
| | | * |
| | | FROM |
| | | shop_activities a |
| | | <where> |
| | | a.company_id=#{record.companyId} |
| | | <if test="record.hdzt != null and record.hdzt != ''"> |
| | | and a.act_status=#{record.hdzt} |
| | | </if> |
| | | <if test="record.hdmc != null and record.hdmc != ''"> |
| | | and a.act_name like concat('%',#{record.hdmc},'%') |
| | | </if> |
| | | </where> |
| | | <if test="record.sort !=null"> |
| | | order by |
| | | a.${record.sort} ${record.order} |
| | | </if> |
| | | </select> |
| | | </mapper> |