Commit b0d4e19d by 高鹏

Merge branch 'feature-zengpo-1002377' into 'master'

发送时判断是否需要发送h5页面链接

See merge request rays/pcloud-book!425
parents f0881025 7ace5f26
......@@ -32,6 +32,7 @@ public class PcloudRobotClassifyDaoImpl extends BaseDaoImpl<PcloudRobotClassify>
Map<String,Object> map=new HashMap<>();
map.put("id",id);
map.put("welcomeDuration",welcomeDuration);
map.put("isOpenPushH5url",isOpenPushH5url);
getSessionTemplate().update(getStatement("updateWelcomeDuration"),map);
}
}
......@@ -16,7 +16,7 @@ public class ClassifyWelcomeDTO extends BaseDTO {
@ApiModelProperty("欢迎语间隔时长")
private Integer welcomeDuration;
@ApiModelProperty("是否开启h5页面链接推送")
private Integer isOpenPushH5url;
private List<PcloudRobotWelcome> pcloudRobotWelcomeList;
......
......@@ -18,6 +18,7 @@ public class PcloudRobotClassify extends BaseEntity {
private Integer welcomeDuration;
@ApiModelProperty("是否开启h5链接推送")
private Integer isOpenPushH5url;
@ApiModelProperty("关键词分类ID")
......
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