Commit bcfa5dff by shenjunjie

Merge branch 'feature' into 'master'

Project.isMergeSensitive 主品牌默认为true

See merge request !212
parents 864a7968 000c77f1
...@@ -115,7 +115,7 @@ public class Project extends AbstractProject { ...@@ -115,7 +115,7 @@ public class Project extends AbstractProject {
projectVO.setNegativeChannelParams(this.getNegativeChannelParams()); projectVO.setNegativeChannelParams(this.getNegativeChannelParams());
projectVO.setPositiveChannelParams(this.getPositiveChannelParams()); projectVO.setPositiveChannelParams(this.getPositiveChannelParams());
projectVO.setBlackChannelGroup(this.getBlackChannelGroup()); projectVO.setBlackChannelGroup(this.getBlackChannelGroup());
projectVO.setMergeSensitive(true);
return projectVO; return projectVO;
} }
......
...@@ -73,8 +73,7 @@ public class ProjectVO { ...@@ -73,8 +73,7 @@ public class ProjectVO {
* 是否包含敏感 * 是否包含敏感
*/ */
@ApiModelProperty("是否包含敏感") @ApiModelProperty("是否包含敏感")
private boolean isMergeSensitive; private boolean isMergeSensitive = true;
;
/** /**
* 命中标签 * 命中标签
*/ */
......
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