Commit edda8b6c by jinxin

自建类型字段处理

parent a26a2167
......@@ -42,11 +42,28 @@ public class YwWxEnterpriseDTO implements Serializable {
*/
private Boolean openMassFlag;
/**
* 企微加密类型1待开发+第三方(都是明文),2待开发+第三方(都是密文),3待开发(明文)+第三方v密文),4待开发(密文)+第三方(明文),5自建应用
*/
private Integer wxSecurityType ;
/**
* 应用类型,0第三方 1自建
*/
private Integer appType;
public Integer getWxSecurityType() {
return wxSecurityType;
}
public void setWxSecurityType(Integer wxSecurityType) {
this.wxSecurityType = wxSecurityType;
}
public Integer getAppType() {
if (this.wxSecurityType == 5){
this.appType = 1;
}else {
this.appType = 0;
}
return appType;
}
......
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