Commit eab21ab1 by 徐高华

朋友圈

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