Commit 9d969642 by guojuxing

联合商户http 接口

parent 7c106337
......@@ -162,6 +162,12 @@ public class UnionEnterpriseAuthController {
return RestResponse.success();
}
@RequestMapping("get-resource-detail")
public RestResponse getResourceDetail(Integer enterpriseId) {
//todo starrynight
return RestResponse.success(new UnionEnterpriseResourceDetailVO());
}
/**
* 解除资源
* @param enterpriseId 联合商户
......@@ -187,6 +193,12 @@ public class UnionEnterpriseAuthController {
return RestResponse.success(list);
}
@RequestMapping("resource-reset-auth")
public RestResponse resourceResetAuth(Integer enterpriseId, Integer resourceType) {
//todo starrynight
return RestResponse.success();
}
@RequestMapping("list-app")
public RestResponse listApp() {
ServiceResponse<List<ApplicationDTO>> appListResponse = applicationApiService.listApplicationAndServeProp();
......@@ -199,6 +211,12 @@ public class UnionEnterpriseAuthController {
return RestResponse.success();
}
@RequestMapping("get-app-resource-detail")
public RestResponse getAppResourceDetail(Integer unionEnterpriseAuthAppId) {
//todo starrynight
return RestResponse.success(new UnionEnterpriseAppResourceDetailVO());
}
@RequestMapping("user-area")
public RestResponse userArea(Integer enterpriseId) {
//todo starrynight 资源组的用户域数据
......@@ -217,6 +235,45 @@ public class UnionEnterpriseAuthController {
/**
* 自有商户列表
* @return
*/
@RequestMapping("list-own-enterprise")
public RestResponse listOwnEnterprise() {
//todo starrynight
List<OwnEnterpriseListVO> page = new ArrayList<>();
return RestResponse.success(page);
}
@RequestMapping("get-own-enterprise-resource-detail")
public RestResponse getOwnEnterpriseResourceDetail(Integer ownEnterpriseId) {
//todo starrynight
return RestResponse.success(new OwnEnterpriseResourceDetailVO());
}
@RequestMapping("get-own-enterprise-app-resource-detail")
public RestResponse getOwnEnterpriseAppResourceDetail(Integer ownEnterpriseId) {
//todo starrynight
List<OwnEnterpriseAppResourceDetailVO> list = new ArrayList<>();
return RestResponse.success(list);
}
@RequestMapping("list-operation-log")
public RestResponse listOperationLog(Integer ownEnterpriseId, String logContent, String resourceTypeName, String startTime, String endTime) {
//todo starrynight
List<OwnEnterpriseOperationLogVO> list = new ArrayList<>();
return RestResponse.success(list);
}
@RequestMapping("get-last-union-info")
public RestResponse getLastUnionInfo() {
//todo starrynight
return RestResponse.success(new OwnEnterpriseUnionInfoVO());
}
/**
* 检查是否存在联合商户
* @param enterpriseName
* @return null失败
......
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
/**
* 自有商户资源详情-账号分组
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 10:03 AM

*/
public class OwnEnterpriseAccountGroupVO implements Serializable{
private static final long serialVersionUID = 1912471062164498932L;
/**
* ID
*/
private Integer accountGroupId;
/**
* 账号名称
*/
private String accountGroupName;
private Integer userCount;
public Integer getAccountGroupId() {
return accountGroupId;
}
public OwnEnterpriseAccountGroupVO setAccountGroupId(Integer accountGroupId) {
this.accountGroupId = accountGroupId;
return this;
}
public String getAccountGroupName() {
return accountGroupName;
}
public OwnEnterpriseAccountGroupVO setAccountGroupName(String accountGroupName) {
this.accountGroupName = accountGroupName;
return this;
}
public Integer getUserCount() {
return userCount;
}
public OwnEnterpriseAccountGroupVO setUserCount(Integer userCount) {
this.userCount = userCount;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseAccountGroupVO{" +
"accountGroupId=" + accountGroupId +
", accountGroupName='" + accountGroupName + '\'' +
", userCount=" + userCount +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* 应用资源详情
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 10:15 AM

*/
public class OwnEnterpriseAppResourceDetailVO implements Serializable{
private static final long serialVersionUID = 1138602216702890769L;
private String appName;
private Map<String, List<String>> userArea;
public String getAppName() {
return appName;
}
public OwnEnterpriseAppResourceDetailVO setAppName(String appName) {
this.appName = appName;
return this;
}
public Map<String, List<String>> getUserArea() {
return userArea;
}
public OwnEnterpriseAppResourceDetailVO setUserArea(Map<String, List<String>> userArea) {
this.userArea = userArea;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseAppResourceDetailVO{" +
"appName='" + appName + '\'' +
", userArea=" + userArea +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
/**
* 自有商户资源详情-审核员
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 9:55 AM

*/
public class OwnEnterpriseAuditVO implements Serializable{
private static final long serialVersionUID = 1844257501667472581L;
private String auditorName;
private String phone;
private Integer userId;
public String getAuditorName() {
return auditorName;
}
public OwnEnterpriseAuditVO setAuditorName(String auditorName) {
this.auditorName = auditorName;
return this;
}
public String getPhone() {
return phone;
}
public OwnEnterpriseAuditVO setPhone(String phone) {
this.phone = phone;
return this;
}
public Integer getUserId() {
return userId;
}
public OwnEnterpriseAuditVO setUserId(Integer userId) {
this.userId = userId;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseAuditVO{" +
"auditorName='" + auditorName + '\'' +
", phone='" + phone + '\'' +
", userId=" + userId +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
import java.util.List;
/**
* 自有商户资源详情-受审组
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 9:50 AM

*/
public class OwnEnterpriseAuditedGroupVO implements Serializable{
private static final long serialVersionUID = 5648493631085800936L;
private String auditedGroupName;
private Integer auditedGroupId;
/**
* 审核员信息
*/
private List<OwnEnterpriseAuditVO> auditorInfo;
public String getAuditedGroupName() {
return auditedGroupName;
}
public OwnEnterpriseAuditedGroupVO setAuditedGroupName(String auditedGroupName) {
this.auditedGroupName = auditedGroupName;
return this;
}
public Integer getAuditedGroupId() {
return auditedGroupId;
}
public OwnEnterpriseAuditedGroupVO setAuditedGroupId(Integer auditedGroupId) {
this.auditedGroupId = auditedGroupId;
return this;
}
public List<OwnEnterpriseAuditVO> getAuditorInfo() {
return auditorInfo;
}
public OwnEnterpriseAuditedGroupVO setAuditorInfo(List<OwnEnterpriseAuditVO> auditorInfo) {
this.auditorInfo = auditorInfo;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseAuditedGroupVO{" +
"auditedGroupName='" + auditedGroupName + '\'' +
", audtedGroupId=" + auditedGroupId +
", auditorInfo=" + auditorInfo +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
import java.util.Date;
/**
* 自有商户列表
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/2 4:39 PM

*/
public class OwnEnterpriseListVO implements Serializable{
private static final long serialVersionUID = -7276918784638940478L;
private String userName;
private String phoneNumber;
/**
* 国际区号,如中国 86
*/
private String phoneAreaCode;
private String enterpriseName;
private String companyName;
private String address;
private String enterpriseId;
/**
* 1:有效 2:解除中 3: 已解除联合
*/
private Integer statusFlag;
/**
* 解除时间
*/
private Date relieveTime;
/**
* 最新解除时间(最后一项资源收回完毕时间)
*/
private Date lastRelieveTime;
/**
* 解除生效时间,保留X个自然日后开始解除资源
*/
private Integer relieveEffectDate;
/**
* 最新联合完成时间(最后一项资源授权完毕时间
*/
private Date lastUnionTime;
public String getUserName() {
return userName;
}
public OwnEnterpriseListVO setUserName(String userName) {
this.userName = userName;
return this;
}
public String getPhoneNumber() {
return phoneNumber;
}
public OwnEnterpriseListVO setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
public String getPhoneAreaCode() {
return phoneAreaCode;
}
public OwnEnterpriseListVO setPhoneAreaCode(String phoneAreaCode) {
this.phoneAreaCode = phoneAreaCode;
return this;
}
public String getEnterpriseName() {
return enterpriseName;
}
public OwnEnterpriseListVO setEnterpriseName(String enterpriseName) {
this.enterpriseName = enterpriseName;
return this;
}
public String getCompanyName() {
return companyName;
}
public OwnEnterpriseListVO setCompanyName(String companyName) {
this.companyName = companyName;
return this;
}
public String getAddress() {
return address;
}
public OwnEnterpriseListVO setAddress(String address) {
this.address = address;
return this;
}
public String getEnterpriseId() {
return enterpriseId;
}
public OwnEnterpriseListVO setEnterpriseId(String enterpriseId) {
this.enterpriseId = enterpriseId;
return this;
}
public Integer getStatusFlag() {
return statusFlag;
}
public OwnEnterpriseListVO setStatusFlag(Integer statusFlag) {
this.statusFlag = statusFlag;
return this;
}
public Date getRelieveTime() {
return relieveTime;
}
public OwnEnterpriseListVO setRelieveTime(Date relieveTime) {
this.relieveTime = relieveTime;
return this;
}
public Date getLastRelieveTime() {
return lastRelieveTime;
}
public OwnEnterpriseListVO setLastRelieveTime(Date lastRelieveTime) {
this.lastRelieveTime = lastRelieveTime;
return this;
}
public Integer getRelieveEffectDate() {
return relieveEffectDate;
}
public OwnEnterpriseListVO setRelieveEffectDate(Integer relieveEffectDate) {
this.relieveEffectDate = relieveEffectDate;
return this;
}
public Date getLastUnionTime() {
return lastUnionTime;
}
public OwnEnterpriseListVO setLastUnionTime(Date lastUnionTime) {
this.lastUnionTime = lastUnionTime;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseListVO{" +
"userName='" + userName + '\'' +
", phoneNumber='" + phoneNumber + '\'' +
", phoneAreaCode='" + phoneAreaCode + '\'' +
", enterpriseName='" + enterpriseName + '\'' +
", companyName='" + companyName + '\'' +
", address='" + address + '\'' +
", enterpriseId='" + enterpriseId + '\'' +
", statusFlag=" + statusFlag +
", relieveTime=" + relieveTime +
", lastRelieveTime=" + lastRelieveTime +
", relieveEffectDate=" + relieveEffectDate +
", lastUniontime=" + lastUnionTime +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
import java.util.Date;
/**
* 操作日志
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 10:26 AM

*/
public class OwnEnterpriseOperationLogVO implements Serializable{
private static final long serialVersionUID = -7334015163966737016L;
private String resourceTypeName;
private Integer resourceType;
private String logContent;
private Date dealStartTime;
private Date dealEndTime;
public String getResourceTypeName() {
return resourceTypeName;
}
public OwnEnterpriseOperationLogVO setResourceTypeName(String resourceTypeName) {
this.resourceTypeName = resourceTypeName;
return this;
}
public Integer getResourceType() {
return resourceType;
}
public OwnEnterpriseOperationLogVO setResourceType(Integer resourceType) {
this.resourceType = resourceType;
return this;
}
public String getLogContent() {
return logContent;
}
public OwnEnterpriseOperationLogVO setLogContent(String logContent) {
this.logContent = logContent;
return this;
}
public Date getDealStartTime() {
return dealStartTime;
}
public OwnEnterpriseOperationLogVO setDealStartTime(Date dealStartTime) {
this.dealStartTime = dealStartTime;
return this;
}
public Date getDealEndTime() {
return dealEndTime;
}
public OwnEnterpriseOperationLogVO setDealEndTime(Date dealEndTime) {
this.dealEndTime = dealEndTime;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseOperationLogVO{" +
"resourceTypeName='" + resourceTypeName + '\'' +
", resourceType=" + resourceType +
", logContent='" + logContent + '\'' +
", dealStartTime=" + dealStartTime +
", dealEndTime=" + dealEndTime +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
import java.util.List;
/**
* 自有商户资源详情
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 9:46 AM

*/
public class OwnEnterpriseResourceDetailVO implements Serializable{
private static final long serialVersionUID = -8730655831272896649L;
/**
*
*/
private Integer resourceGroupId;
/**
* 资源名称
*/
private String resourceGroupName;
/**
* 用户域 0:不授予 1:授予
*/
private Integer customUser;
/**
* 用户域配置,json格式 [{"type":1,"sort":1,"areaValue":"","cuSelectId":""}]
*/
private String customUserData;
/**
* 门店资源
*/
private Long storeResource;
/**
* 商品资源
*/
private Long goodsResourceId;
/**
* 线下门店订单 1:用户在授权管辖门店范围内的订单 2:用户下所有订单
*/
private Integer storeOrderArea;
/**
* 微盟商城订单 1:用户在授权店铺范围内的订单 2:不授予
*/
private Integer weimobOrderArea;
/**
* 微盟店铺多选,weimob_order_area选择1时选择店铺,英文逗号隔开
*/
private String weimobStoreId;
/**
* 短信签名多选,英文逗号隔开
*/
private String smsId;
private List<OwnEnterpriseAuditedGroupVO> auditedGroup;
private List<OwnEnterpriseAccountGroupVO> accountGroup;
public Integer getResourceGroupId() {
return resourceGroupId;
}
public OwnEnterpriseResourceDetailVO setResourceGroupId(Integer resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupName() {
return resourceGroupName;
}
public OwnEnterpriseResourceDetailVO setResourceGroupName(String resourceGroupName) {
this.resourceGroupName = resourceGroupName;
return this;
}
public Integer getCustomUser() {
return customUser;
}
public OwnEnterpriseResourceDetailVO setCustomUser(Integer customUser) {
this.customUser = customUser;
return this;
}
public String getCustomUserData() {
return customUserData;
}
public OwnEnterpriseResourceDetailVO setCustomUserData(String customUserData) {
this.customUserData = customUserData;
return this;
}
public Long getStoreResource() {
return storeResource;
}
public OwnEnterpriseResourceDetailVO setStoreResource(Long storeResource) {
this.storeResource = storeResource;
return this;
}
public Long getGoodsResourceId() {
return goodsResourceId;
}
public OwnEnterpriseResourceDetailVO setGoodsResourceId(Long goodsResourceId) {
this.goodsResourceId = goodsResourceId;
return this;
}
public Integer getStoreOrderArea() {
return storeOrderArea;
}
public OwnEnterpriseResourceDetailVO setStoreOrderArea(Integer storeOrderArea) {
this.storeOrderArea = storeOrderArea;
return this;
}
public Integer getWeimobOrderArea() {
return weimobOrderArea;
}
public OwnEnterpriseResourceDetailVO setWeimobOrderArea(Integer weimobOrderArea) {
this.weimobOrderArea = weimobOrderArea;
return this;
}
public String getWeimobStoreId() {
return weimobStoreId;
}
public OwnEnterpriseResourceDetailVO setWeimobStoreId(String weimobStoreId) {
this.weimobStoreId = weimobStoreId;
return this;
}
public String getSmsId() {
return smsId;
}
public OwnEnterpriseResourceDetailVO setSmsId(String smsId) {
this.smsId = smsId;
return this;
}
public List<OwnEnterpriseAuditedGroupVO> getAuditedGroup() {
return auditedGroup;
}
public OwnEnterpriseResourceDetailVO setAuditedGroup(List<OwnEnterpriseAuditedGroupVO> auditedGroup) {
this.auditedGroup = auditedGroup;
return this;
}
public List<OwnEnterpriseAccountGroupVO> getAccountGroup() {
return accountGroup;
}
public OwnEnterpriseResourceDetailVO setAccountGroup(List<OwnEnterpriseAccountGroupVO> accountGroup) {
this.accountGroup = accountGroup;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseResourceDetailVO{" +
"resourceGroupId=" + resourceGroupId +
", resourceGroupName='" + resourceGroupName + '\'' +
", customUser=" + customUser +
", customUserData='" + customUserData + '\'' +
", storeResource=" + storeResource +
", goodsResourceId=" + goodsResourceId +
", storeOrderArea=" + storeOrderArea +
", weimobOrderArea=" + weimobOrderArea +
", weimobStoreId='" + weimobStoreId + '\'' +
", smsId='" + smsId + '\'' +
", auditedGroup=" + auditedGroup +
", accountGroup=" + accountGroup +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
import java.util.List;
/**
* 首页登录提示信息
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 10:55 AM

*/
public class OwnEnterpriseUnionInfoVO implements Serializable{
private static final long serialVersionUID = 2393871614503713336L;
private String lastUnionTime;
private String enterpriseName;
private List<String> ownEnterpriseList;
public String getLastUnionTime() {
return lastUnionTime;
}
public OwnEnterpriseUnionInfoVO setLastUnionTime(String lastUnionTime) {
this.lastUnionTime = lastUnionTime;
return this;
}
public String getEnterpriseName() {
return enterpriseName;
}
public OwnEnterpriseUnionInfoVO setEnterpriseName(String enterpriseName) {
this.enterpriseName = enterpriseName;
return this;
}
public List<String> getOwnEnterpriseList() {
return ownEnterpriseList;
}
public OwnEnterpriseUnionInfoVO setOwnEnterpriseList(List<String> ownEnterpriseList) {
this.ownEnterpriseList = ownEnterpriseList;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseUnionInfoVO{" +
"lastUnionTime='" + lastUnionTime + '\'' +
", enterpriseName='" + enterpriseName + '\'' +
", ownEnterpriseList=" + ownEnterpriseList +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
/**
* 应用资源编辑详情
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 11:15 AM

*/
public class UnionEnterpriseAppResourceDetailVO implements Serializable{
private static final long serialVersionUID = -5493332069062870053L;
/**
* 策略名称
*/
private String strategyName;
/**
* 应用ID,多选,英文逗号隔开
*/
private String appId;
/**
* 0:不授予 1:授予
*/
private Integer appAuthStatus;
/**
* 所选资源组中的用户域中的域资源(mcu,fcu,acu,scu),json数组格式 CuTypeEnum
*/
private String authData;
/**
* 联合商户名称
*/
private String enterpriseName;
/**
* 联合商户主键
*/
private Integer unionEnterpriseAuthId;
public String getStrategyName() {
return strategyName;
}
public UnionEnterpriseAppResourceDetailVO setStrategyName(String strategyName) {
this.strategyName = strategyName;
return this;
}
public String getAppId() {
return appId;
}
public UnionEnterpriseAppResourceDetailVO setAppId(String appId) {
this.appId = appId;
return this;
}
public Integer getAppAuthStatus() {
return appAuthStatus;
}
public UnionEnterpriseAppResourceDetailVO setAppAuthStatus(Integer appAuthStatus) {
this.appAuthStatus = appAuthStatus;
return this;
}
public String getAuthData() {
return authData;
}
public UnionEnterpriseAppResourceDetailVO setAuthData(String authData) {
this.authData = authData;
return this;
}
public String getEnterpriseName() {
return enterpriseName;
}
public UnionEnterpriseAppResourceDetailVO setEnterpriseName(String enterpriseName) {
this.enterpriseName = enterpriseName;
return this;
}
public Integer getUnionEnterpriseAuthId() {
return unionEnterpriseAuthId;
}
public UnionEnterpriseAppResourceDetailVO setUnionEnterpriseAuthId(Integer unionEnterpriseAuthId) {
this.unionEnterpriseAuthId = unionEnterpriseAuthId;
return this;
}
@Override
public String toString() {
return "UnionEnterpriseAppResourceDetailVO{" +
"strategyName='" + strategyName + '\'' +
", appId='" + appId + '\'' +
", appAuthStatus=" + appAuthStatus +
", authData='" + authData + '\'' +
", enterpriseName='" + enterpriseName + '\'' +
", unionEnterpriseAuthId=" + unionEnterpriseAuthId +
'}';
}
}
package com.gic.enterprise.web.vo.union;
import java.io.Serializable;
/**
* 联合商户详情
* @ClassName:
* @Description: 

* @author guojuxing

* @date 2021/2/3 11:01 AM

*/
public class UnionEnterpriseResourceDetailVO implements Serializable{
private static final long serialVersionUID = -7062868866205592765L;
/**
* 资源组ID
*/
private Integer resourceGroupId;
/**
* 受审组,多选,英文逗号隔开
*/
private String auditeeGroup;
/**
* 账号分组,多选,英文逗号隔开
*/
private String accountGroup;
/**
* 数据加密字段 1:用户手机号、卡号 2:用户收获地址 。多选,英文逗号隔开
*/
private String dataEncryField;
/**
* 用户修改权限 1:用户归属修改权限 2:用户等级修改权限 3:用户积分修改权限 4:用户手机号修改权限 。多选,英文逗号隔开
*/
private String userEditAuth;
/**
* 白名单用户授权 1:是 0:否
*/
private Integer whiteListAuth;
/**
* 联合商户名称
*/
private String enterpriseName;
/**
*
*/
private Integer enterpriseId;
public Integer getResourceGroupId() {
return resourceGroupId;
}
public UnionEnterpriseResourceDetailVO setResourceGroupId(Integer resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getAuditeeGroup() {
return auditeeGroup;
}
public UnionEnterpriseResourceDetailVO setAuditeeGroup(String auditeeGroup) {
this.auditeeGroup = auditeeGroup;
return this;
}
public String getAccountGroup() {
return accountGroup;
}
public UnionEnterpriseResourceDetailVO setAccountGroup(String accountGroup) {
this.accountGroup = accountGroup;
return this;
}
public String getDataEncryField() {
return dataEncryField;
}
public UnionEnterpriseResourceDetailVO setDataEncryField(String dataEncryField) {
this.dataEncryField = dataEncryField;
return this;
}
public String getUserEditAuth() {
return userEditAuth;
}
public UnionEnterpriseResourceDetailVO setUserEditAuth(String userEditAuth) {
this.userEditAuth = userEditAuth;
return this;
}
public String getEnterpriseName() {
return enterpriseName;
}
public UnionEnterpriseResourceDetailVO setEnterpriseName(String enterpriseName) {
this.enterpriseName = enterpriseName;
return this;
}
public Integer getEnterpriseId() {
return enterpriseId;
}
public UnionEnterpriseResourceDetailVO setEnterpriseId(Integer enterpriseId) {
this.enterpriseId = enterpriseId;
return this;
}
public Integer getWhiteListAuth() {
return whiteListAuth;
}
public UnionEnterpriseResourceDetailVO setWhiteListAuth(Integer whiteListAuth) {
this.whiteListAuth = whiteListAuth;
return this;
}
@Override
public String toString() {
return "UnionEnterpriseResourceDetailVO{" +
"resourceGroupId=" + resourceGroupId +
", auditeeGroup='" + auditeeGroup + '\'' +
", accountGroup='" + accountGroup + '\'' +
", dataEncryField='" + dataEncryField + '\'' +
", userEditAuth='" + userEditAuth + '\'' +
", whiteListAuth=" + whiteListAuth +
", enterpriseName='" + enterpriseName + '\'' +
", enterpriseId=" + enterpriseId +
'}';
}
}
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