Commit eab21ab1 by 徐高华

朋友圈

parent ede4c4d2
......@@ -69,10 +69,23 @@ public class QwMomentPlanDTO implements Serializable{
private List<String> selectClerkIdList ;
/**
* 链接开关
*/
private Integer mediaLinkFlag ;
/**
* 参与导购列表
*/
private List<QwMomentPlanAttendDTO> clerkList ;
public Integer getMediaLinkFlag() {
return mediaLinkFlag;
}
public void setMediaLinkFlag(Integer mediaLinkFlag) {
this.mediaLinkFlag = mediaLinkFlag;
}
public List<QwMomentPlanAttendDTO> getClerkList() {
return clerkList;
}
......
......@@ -77,6 +77,19 @@ public class TabQwMomentPlan implements Serializable{
private Integer taskClerkNum ;
/**
* 链接开关
*/
private Integer mediaLinkFlag ;
public Integer getMediaLinkFlag() {
return mediaLinkFlag;
}
public void setMediaLinkFlag(Integer mediaLinkFlag) {
this.mediaLinkFlag = mediaLinkFlag;
}
public Integer getTaskClerkNum() {
return taskClerkNum;
}
......
......@@ -32,6 +32,7 @@
<result column="exec_rate" javaType="int" jdbcType="INTEGER" property="execRate"/>
<result column="task_clerk_num" property="taskClerkNum" />
<result column="moment_id" property="momentId" />
<result column="media_link_flag" property="mediaLinkFlag" />
</resultMap>
<sql id="Base_Column_List">
plan_id,
......@@ -61,7 +62,7 @@
total_like_count,
total_comment_count,
qw_jobid,
exec_rate , task_clerk_num , moment_id
exec_rate , task_clerk_num , moment_id , media_link_flag
</sql>
<!-- ===================== 新增 ======================== -->
<insert id="insert">
......@@ -90,7 +91,7 @@
total_like_count,
total_comment_count,
qw_jobid,
exec_rate
exec_rate , media_link_flag
)VALUES(
#{planId,jdbcType=BIGINT},
#{title,jdbcType=VARCHAR},
......@@ -116,7 +117,7 @@
#{totalLikeCount,jdbcType=INTEGER},
#{totalCommentCount,jdbcType=INTEGER},
#{qwJobid,jdbcType=VARCHAR},
#{execRate,jdbcType=INTEGER}
#{execRate,jdbcType=INTEGER} , #{mediaLinkFlag}
)
</insert>
......@@ -141,9 +142,6 @@
<if test="null != execType">
exec_type=#{execType},
</if>
<if test="null != statusFlag">
status_flag=#{statusFlag},
</if>
<if test="null != publishType">
publish_type=#{publishType},
</if>
......@@ -165,6 +163,9 @@
<if test="null != mediaInfoShow">
media_info_show=#{mediaInfoShow},
</if>
<if test="null != mediaLinkFlag">
media_link_flag=#{mediaLinkFlag},
</if>
</set>
where plan_id =#{planId}
</update>
......
......@@ -63,6 +63,20 @@ public class QwMomentPlanQO implements Serializable {
// 选择的导购id列表
private List<String> selectClerkIdList ;
/**
* 链接开关
*/
private Integer mediaLinkFlag ;
public Integer getMediaLinkFlag() {
return mediaLinkFlag;
}
public void setMediaLinkFlag(Integer mediaLinkFlag) {
this.mediaLinkFlag = mediaLinkFlag;
}
public Long getPlanId() {
return planId;
}
......
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