Commit ff6c533d by 徐高华

朋友圈

parent 73294561
...@@ -18,6 +18,7 @@ public class QwMomentPlanDataDTO implements Serializable{ ...@@ -18,6 +18,7 @@ public class QwMomentPlanDataDTO implements Serializable{
private String enterpriseId; private String enterpriseId;
/**staff*/ /**staff*/
private String staffId; private String staffId;
private String staffName ;
/**导购*/ /**导购*/
private String clerkId; private String clerkId;
/**门店id*/ /**门店id*/
...@@ -39,6 +40,14 @@ public class QwMomentPlanDataDTO implements Serializable{ ...@@ -39,6 +40,14 @@ public class QwMomentPlanDataDTO implements Serializable{
/**是否点赞*/ /**是否点赞*/
private Integer likeFlag; private Integer likeFlag;
public String getStaffName() {
return staffName;
}
public void setStaffName(String staffName) {
this.staffName = staffName;
}
public Long getDataId() { public Long getDataId() {
return dataId; return dataId;
} }
......
...@@ -141,24 +141,9 @@ ...@@ -141,24 +141,9 @@
<if test="null != execType"> <if test="null != execType">
exec_type=#{execType}, exec_type=#{execType},
</if> </if>
<if test="null != wxEnterpriseId">
wx_enterprise_id=#{wxEnterpriseId},
</if>
<if test="null != enterpriseId">
enterprise_id=#{enterpriseId},
</if>
<if test="null != creatorId">
creator_id=#{creatorId},
</if>
<if test="null != creatorName">
creator_name=#{creatorName},
</if>
<if test="null != statusFlag"> <if test="null != statusFlag">
status_flag=#{statusFlag}, status_flag=#{statusFlag},
</if> </if>
<if test="null != deleteFlag">
delete_flag=#{deleteFlag},
</if>
<if test="null != publishType"> <if test="null != publishType">
publish_type=#{publishType}, publish_type=#{publishType},
</if> </if>
...@@ -168,12 +153,6 @@ ...@@ -168,12 +153,6 @@
<if test="null != planClerkType"> <if test="null != planClerkType">
plan_clerk_type=#{planClerkType}, plan_clerk_type=#{planClerkType},
</if> </if>
<if test="null != totalNum">
total_num=#{totalNum},
</if>
<if test="null != doneNum">
done_num=#{doneNum},
</if>
<if test="null != stopTime"> <if test="null != stopTime">
stop_time=#{stopTime}, stop_time=#{stopTime},
</if> </if>
...@@ -236,8 +215,10 @@ ...@@ -236,8 +215,10 @@
<select id="list" resultMap="result-map-tabHaobanQwMomentPlan" <select id="list" resultMap="result-map-tabHaobanQwMomentPlan"
parameterType="com.gic.haoban.manage.api.qdto.moment.QwMomentPlanQDTO"> parameterType="com.gic.haoban.manage.api.qdto.moment.QwMomentPlanQDTO">
select <include refid="Base_Column_List"/> from tab_haoban_qw_moment_plan where wx_enterprise_id=#{wxEnterpriseId} and enterprise_id = #{enterpriseId} select <include refid="Base_Column_List"/> from tab_haoban_qw_moment_plan where enterprise_id = #{enterpriseId}
<if test="null != wxEnterpriseId">
and wx_enterprise_id=#{wxEnterpriseId}
</if>
<if test="statusFlag ==0"> <if test="statusFlag ==0">
and ( status_flag = 1 and begin_date <![CDATA[ > ]]> NOW() ) and ( status_flag = 1 and begin_date <![CDATA[ > ]]> NOW() )
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment