Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-platform-enterprise
Commits
641a8f76
Commit
641a8f76
authored
Feb 20, 2021
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应用策略编辑接口修改
parent
f3bfb352
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
155 additions
and
12 deletions
+155
-12
UnionEnterpriseAuthController.java
...e/web/controller/union/UnionEnterpriseAuthController.java
+115
-12
OwnEnterpriseResourceDetailVO.java
...nterprise/web/vo/union/OwnEnterpriseResourceDetailVO.java
+38
-0
dubbo-gic-platform-enterprise-web.xml
.../src/main/resources/dubbo-gic-platform-enterprise-web.xml
+2
-0
No files found.
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/controller/union/UnionEnterpriseAuthController.java
View file @
641a8f76
This diff is collapsed.
Click to expand it.
gic-platform-enterprise-web/src/main/java/com/gic/enterprise/web/vo/union/OwnEnterpriseResourceDetailVO.java
View file @
641a8f76
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
+
'\''
+
...
...
gic-platform-enterprise-web/src/main/resources/dubbo-gic-platform-enterprise-web.xml
View file @
641a8f76
...
...
@@ -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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment