Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
1
Merge Requests
1
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
haoban3.0
haoban-manage3.0
Commits
b94f74b1
Commit
b94f74b1
authored
Aug 16, 2023
by
jinxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
好办许可分配
parent
e31be430
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
0 deletions
+51
-0
StaffController.java
...com/gic/haoban/manage/web/controller/StaffController.java
+14
-0
StaffActiveAllocationVO.java
...com/gic/haoban/manage/web/vo/StaffActiveAllocationVO.java
+37
-0
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/StaffController.java
View file @
b94f74b1
...
@@ -695,4 +695,18 @@ public class StaffController extends WebBaseController {
...
@@ -695,4 +695,18 @@ public class StaffController extends WebBaseController {
return
RestResponse
.
successResult
(
vo
);
return
RestResponse
.
successResult
(
vo
);
}
}
/**
* 批量分配成员许可码
* @param staffIds
* @return
*/
@RequestMapping
(
"staff-active-allocation"
)
public
RestResponse
<
StaffActiveAllocationVO
>
staffActiveAllocation
(
String
staffIds
)
{
WebLoginDTO
login
=
AuthWebRequestUtil
.
getLoginUser
();
String
wxEnterpriseId
=
login
.
getWxEnterpriseId
();
return
RestResponse
.
successResult
();
}
}
}
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/StaffActiveAllocationVO.java
0 → 100644
View file @
b94f74b1
package
com
.
gic
.
haoban
.
manage
.
web
.
vo
;
import
java.io.Serializable
;
/**
* @description:
* @Author: wenhua
* @Date: 2023/8/16 10:08
*/
public
class
StaffActiveAllocationVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 失败个数
*/
private
Integer
nums
;
/**
* 失败原因
*/
private
String
errMessage
;
public
Integer
getNums
()
{
return
nums
;
}
public
void
setNums
(
Integer
nums
)
{
this
.
nums
=
nums
;
}
public
String
getErrMessage
()
{
return
errMessage
;
}
public
void
setErrMessage
(
String
errMessage
)
{
this
.
errMessage
=
errMessage
;
}
}
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