Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
Project
Project
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
Administrator
dsk-cr20g
Commits
fbb9aa50
Commit
fbb9aa50
authored
Oct 10, 2023
by
Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-招标项目类别
Signed-off-by:
Administrator
<
admin@example.com
>
parent
4dc4ae51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
EnterpriseProjectController.java
...a/com/dsk/jsk/controller/EnterpriseProjectController.java
+20
-0
EnterpriseProjectService.java
...in/java/com/dsk/jsk/service/EnterpriseProjectService.java
+14
-0
No files found.
dsk-module/dsk-biz-api/src/main/java/com/dsk/jsk/controller/EnterpriseProjectController.java
View file @
fbb9aa50
...
...
@@ -79,6 +79,13 @@ public class EnterpriseProjectController {
return
enterpriseProjectService
.
bidNoticePage
(
body
);
}
/***
*@Description: 招标招采阶段
*@Param:
*@return: com.dsk.common.core.domain.R
*@Author: Dgm
*@date: 2023/10/9 14:41
*/
@PostMapping
(
value
=
"/bidNoticeTenderStage"
)
public
R
bidNoticeTenderStage
(
@RequestBody
@Valid
EnterpriseProjectBidNoticeTenderStageBody
body
)
throws
Exception
{
return
enterpriseProjectService
.
bidNoticeTenderStage
(
body
);
...
...
@@ -89,6 +96,19 @@ public class EnterpriseProjectController {
return
enterpriseProjectService
.
bidNoticeArea
(
body
);
}
/***
*@Description: 招标项目类别
*@Param:
*@return: com.dsk.common.core.domain.R
*@Author: Dgm
*@date: 2023/10/9 14:41
*/
@PostMapping
(
value
=
"/bidNoticeProjectCategory"
)
public
R
bidNoticeProjectCategory
(
@RequestBody
@Valid
EnterpriseProjectBidNoticeTenderStageBody
body
)
throws
Exception
{
return
enterpriseProjectService
.
bidNoticeProjectCategory
(
body
);
}
@PostMapping
(
value
=
"/bidNoticeDetail"
)
public
R
bidNoticeDetail
(
@RequestBody
@Valid
EnterpriseProjectBidNoticeDetailBody
body
)
throws
Exception
{
return
enterpriseProjectService
.
bidNoticeDetail
(
body
);
...
...
dsk-module/dsk-biz-api/src/main/java/com/dsk/jsk/service/EnterpriseProjectService.java
View file @
fbb9aa50
...
...
@@ -110,6 +110,20 @@ public class EnterpriseProjectService {
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
/***
*@Description: 招标项目类别
*@Param:
*@return: com.dsk.common.core.domain.R
*@Author: Dgm
*@date: 2023/10/9 14:41
*/
public
R
bidNoticeProjectCategory
(
EnterpriseProjectBidNoticeTenderStageBody
body
)
throws
Exception
{
if
(
body
.
isVaildCid
())
{
return
R
.
ok
();
}
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterpriseProject/bidNoticeProjectCategory"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
return
BeanUtil
.
toBean
(
map
,
R
.
class
);
}
public
R
bidNoticeDetail
(
EnterpriseProjectBidNoticeDetailBody
body
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
dskOpenApiUtil
.
requestBody
(
"/operate/enterpriseProject/bidNoticeDetail"
,
BeanUtil
.
beanToMap
(
body
,
false
,
false
));
...
...
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