Commit 641a8f76 by guojuxing

应用策略编辑接口修改

parent f3bfb352
package com.gic.enterprise.web.vo.union;
import com.gic.auth.dto.ResourceGroupCustomUserDTO;
import java.io.Serializable;
import java.util.List;
......@@ -33,6 +35,8 @@ public class OwnEnterpriseResourceDetailVO implements Serializable{
*/
private String customUserData;
private List<ResourceGroupCustomUserDTO> customUserList;
/**
* 门店资源
*/
......@@ -58,11 +62,15 @@ public class OwnEnterpriseResourceDetailVO implements Serializable{
*/
private String weimobStoreId;
private List<String> weimobName;
/**
* 短信签名多选,英文逗号隔开
*/
private String smsId;
private List<String> smsName;
private List<OwnEnterpriseAuditedGroupVO> auditedGroup;
private List<OwnEnterpriseAccountGroupVO> accountGroup;
......@@ -217,6 +225,33 @@ public class OwnEnterpriseResourceDetailVO implements Serializable{
return this;
}
public List<ResourceGroupCustomUserDTO> getCustomUserList() {
return customUserList;
}
public OwnEnterpriseResourceDetailVO setCustomUserList(List<ResourceGroupCustomUserDTO> customUserList) {
this.customUserList = customUserList;
return this;
}
public List<String> getWeimobName() {
return weimobName;
}
public OwnEnterpriseResourceDetailVO setWeimobName(List<String> weimobName) {
this.weimobName = weimobName;
return this;
}
public List<String> getSmsName() {
return smsName;
}
public OwnEnterpriseResourceDetailVO setSmsName(List<String> smsName) {
this.smsName = smsName;
return this;
}
@Override
public String toString() {
return "OwnEnterpriseResourceDetailVO{" +
......@@ -224,12 +259,15 @@ public class OwnEnterpriseResourceDetailVO implements Serializable{
", resourceGroupName='" + resourceGroupName + '\'' +
", customUser=" + customUser +
", customUserData='" + customUserData + '\'' +
", customUserList=" + customUserList +
", storeResource=" + storeResource +
", goodsResourceId=" + goodsResourceId +
", storeOrderArea=" + storeOrderArea +
", weimobOrderArea=" + weimobOrderArea +
", weimobStoreId='" + weimobStoreId + '\'' +
", weimobName=" + weimobName +
", smsId='" + smsId + '\'' +
", smsName=" + smsName +
", auditedGroup=" + auditedGroup +
", accountGroup=" + accountGroup +
", dataEncryField='" + dataEncryField + '\'' +
......
......@@ -152,4 +152,6 @@
<!--受审组-->
<dubbo:reference interface="com.gic.auth.service.AuditedGroupApiService" id="auditedGroupApiService" timeout="6000" />
<dubbo:reference interface="com.gic.auth.service.AccountGroupApiService" id="accountGroupApiService" timeout="6000" />
<!--短信签名-->
<dubbo:reference interface="com.gic.marketing.api.service.sms.SmsApiService" id="smsApiService" timeout="6000" />
</beans>
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