Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit f1bdd4b3
authored
Dec 06, 2023
by
Ren Ping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:工作队详情增加group类型
1 parent
808f6e4c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
project-order/src/main/java/com/dituhui/pea/order/dto/BusinessTeamDetailDTO.java
project-order/src/main/java/com/dituhui/pea/order/service/impl/BusinessTeamServiceImpl.java
project-order/src/main/java/com/dituhui/pea/order/dto/BusinessTeamDetailDTO.java
View file @
f1bdd4b
...
...
@@ -21,6 +21,10 @@ public class BusinessTeamDetailDTO {
private
String
teamName
;
private
String
groupId
;
private
String
groupName
;
/**
* group类型(1自有分站,2加盟网点)
*/
private
Integer
groupCategory
;
private
String
warehouseId
;
private
List
<
String
>
workdays
;
/**
...
...
@@ -39,7 +43,7 @@ public class BusinessTeamDetailDTO {
private
String
engineerCode
;
private
String
engineerName
;
public
Engineer
(
String
engineerCode
,
String
engineerName
){
public
Engineer
(
String
engineerCode
,
String
engineerName
)
{
this
.
engineerCode
=
engineerCode
;
this
.
engineerName
=
engineerName
;
}
...
...
project-order/src/main/java/com/dituhui/pea/order/service/impl/BusinessTeamServiceImpl.java
View file @
f1bdd4b
...
...
@@ -284,6 +284,7 @@ public class BusinessTeamServiceImpl implements BusinessTeamService {
.
setTeamName
(
teamEntity
.
getTeamName
())
.
setGroupId
(
g
.
getGroupId
())
.
setGroupName
(
g
.
getGroupName
())
.
setGroupCategory
(
g
.
getCategory
())
.
setWarehouseId
(
teamEntity
.
getWarehouseId
())
.
setWorkOff
(
teamEntity
.
getWorkOff
())
.
setWorkOn
(
teamEntity
.
getWorkOn
())
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment