From a13a93a493e7e94e28b2225c26e7e13b52d3288c Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 12 Apr 2021 19:48:45 +0800 Subject: [PATCH] 20210412 tqq环境 --- zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopActivitiesDao.xml | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopActivitiesDao.xml b/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopActivitiesDao.xml index d6f7f20..7bc1f4c 100644 --- a/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopActivitiesDao.xml +++ b/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopActivitiesDao.xml @@ -67,6 +67,7 @@ update_time, id, act_name, + act_code, act_type, act_begin_time, act_end_time, @@ -87,6 +88,7 @@ now(), #{item.id}, #{item.actName}, + #{item.actCode}, #{item.actType}, #{item.actBeginTime}, #{item.actEndTime}, @@ -210,6 +212,13 @@ <set> <if test="record.actName != null and record.actName != '' "> act_name = #{record.actName}, + </if> + <if test="record.actCode != null "> + act_code = #{record.actCode}, + </if> + + <if test="record.actContent != null "> + act_content = #{record.actContent}, </if> <if test="record.actType != null "> act_type = #{record.actType}, @@ -408,4 +417,15 @@ a.${record.sort} ${record.order} </if> </select> + + <select id="selectOneByCompanyIdAndActTypeAndActStatus" resultType="com.matrix.system.shopXcx.bean.ShopActivities"> + SELECT + * + FROM + shop_activities a + where + a.company_id=#{companyId} + and a.act_type=#{activitiesTypeSign} + and a.act_status=#{actstatusStatusIng} + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1