Commit 8e99b23b by jinxin

corpid字段显示

parent e3551669
...@@ -49,6 +49,30 @@ public class YwWxEnterpriseDTO implements Serializable { ...@@ -49,6 +49,30 @@ public class YwWxEnterpriseDTO implements Serializable {
* 应用类型,0第三方 1自建 * 应用类型,0第三方 1自建
*/ */
private Integer appType; private Integer appType;
/**
* 明文corpid
*/
private String wxCorpid ;
/**
* 加密corpid
*/
private String openCorpid ;
public String getWxCorpid() {
return wxCorpid;
}
public void setWxCorpid(String wxCorpid) {
this.wxCorpid = wxCorpid;
}
public String getOpenCorpid() {
return openCorpid;
}
public void setOpenCorpid(String openCorpid) {
this.openCorpid = openCorpid;
}
public Integer getWxSecurityType() { public Integer getWxSecurityType() {
return wxSecurityType; return wxSecurityType;
......
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