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
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
haoban3.0
haoban-manage3.0
Commits
31bb716d
Commit
31bb716d
authored
Feb 25, 2020
by
huangZW
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
111
parent
6b66bb79
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
YwWxEnterpriseDTO.java
...java/com/gic/haoban/manage/api/dto/YwWxEnterpriseDTO.java
+6
-5
EnterpriseController.java
...ic/haoban/manage/web/controller/EnterpriseController.java
+2
-2
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/dto/YwWxEnterpriseDTO.java
View file @
31bb716d
...
...
@@ -17,7 +17,7 @@ public class YwWxEnterpriseDTO implements Serializable {
private
Integer
statusFlag
;
//gic通讯录助手
private
String
gicContactHelper
;
private
String
contactFlag
;
//订购状态
private
String
buyStatus
;
//订购时间
...
...
@@ -75,12 +75,13 @@ public class YwWxEnterpriseDTO implements Serializable {
this
.
statusFlag
=
statusFlag
;
}
public
String
getGicContactHelper
()
{
return
gicContactHelper
;
public
String
getContactFlag
()
{
return
contactFlag
;
}
public
void
set
GicContactHelper
(
String
gicContactHelper
)
{
this
.
gicContactHelper
=
gicContactHelper
;
public
void
set
ContactFlag
(
String
contactFlag
)
{
this
.
contactFlag
=
contactFlag
;
}
public
String
getBuyStatus
()
{
...
...
haoban-manage3-operation-web/src/main/java/com/gic/haoban/manage/web/controller/EnterpriseController.java
View file @
31bb716d
...
...
@@ -31,8 +31,8 @@ public class EnterpriseController extends WebBaseController{
private
WxEnterpriseApiService
wxEnterpriseApiService
;
//企业列表
@RequestMapping
(
"wx-enterprise-list"
)
public
HaobanResponse
wxEnterpriseList
(
BasePageInfo
pageInfo
,
String
keyword
,
String
gicContactHelper
,
String
version
)
{
Page
<
YwWxEnterpriseDTO
>
page
=
wxEnterpriseApiService
.
list
(
pageInfo
,
keyword
,
gicContactHelper
,
version
);
public
HaobanResponse
wxEnterpriseList
(
BasePageInfo
pageInfo
,
String
keyword
,
String
contactFlag
,
String
version
)
{
Page
<
YwWxEnterpriseDTO
>
page
=
wxEnterpriseApiService
.
list
(
pageInfo
,
keyword
,
contactFlag
,
version
);
PageResult
<
YwWxEnterpriseDTO
>
pageVo
=
new
PageResult
<>();
pageVo
.
setList
(
EntityUtil
.
changeEntityListByJSON
(
YwWxEnterpriseDTO
.
class
,
page
.
getResult
()));
pageVo
.
setPageNum
(
page
.
getCurrentPage
());
...
...
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