Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-cost
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
huluobin
bailuntec-cost
Commits
f091c2d4
Commit
f091c2d4
authored
Oct 23, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
是否自动审核
parent
90ba06de
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
CostTemplateApiDto.java
...ava/com/blt/other/module/cost/dto/CostTemplateApiDto.java
+2
-0
CostTemplate.java
...in/java/com/blt/other/module/cost/model/CostTemplate.java
+1
-1
CostTemplateServiceImpl.java
...st/service/impl/costtemplate/CostTemplateServiceImpl.java
+3
-0
No files found.
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostTemplateApiDto.java
View file @
f091c2d4
...
@@ -32,6 +32,8 @@ public class CostTemplateApiDto {
...
@@ -32,6 +32,8 @@ public class CostTemplateApiDto {
@ApiModelProperty
(
"是否开启最终人审核"
)
@ApiModelProperty
(
"是否开启最终人审核"
)
private
Boolean
enableFinalReview
;
private
Boolean
enableFinalReview
;
private
Boolean
setAutoCheck
;
@ApiModelProperty
(
"更新时间"
)
@ApiModelProperty
(
"更新时间"
)
private
LocalDateTime
startTime
;
private
LocalDateTime
startTime
;
@ApiModelProperty
(
"更新时间"
)
@ApiModelProperty
(
"更新时间"
)
...
...
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/model/CostTemplate.java
View file @
f091c2d4
...
@@ -52,7 +52,7 @@ public class CostTemplate implements Serializable {
...
@@ -52,7 +52,7 @@ public class CostTemplate implements Serializable {
@ApiModelProperty
(
"自动审核金额 冗余从表金额字段"
)
@ApiModelProperty
(
"自动审核金额 冗余从表金额字段"
)
private
BigDecimal
autoCheckAmount
;
private
BigDecimal
autoCheckAmount
;
@TableField
(
exist
=
false
)
//
@TableField(exist = false)
@ApiModelProperty
(
"是否设置了自动审核"
)
@ApiModelProperty
(
"是否设置了自动审核"
)
private
Boolean
setAutoCheck
;
private
Boolean
setAutoCheck
;
...
...
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/service/impl/costtemplate/CostTemplateServiceImpl.java
View file @
f091c2d4
...
@@ -129,6 +129,9 @@ public class CostTemplateServiceImpl extends ServiceImpl<CostTemplateMapper, Cos
...
@@ -129,6 +129,9 @@ public class CostTemplateServiceImpl extends ServiceImpl<CostTemplateMapper, Cos
if
(
req
.
getCreateEndTime
()
!=
null
)
{
if
(
req
.
getCreateEndTime
()
!=
null
)
{
wrapper
.
le
(
CostTemplate:
:
getCreateTime
,
req
.
getCreateEndTime
());
wrapper
.
le
(
CostTemplate:
:
getCreateTime
,
req
.
getCreateEndTime
());
}
}
if
(
req
.
getSetAutoCheck
()
!=
null
)
{
wrapper
.
eq
(
CostTemplate:
:
getSetAutoCheck
,
req
.
getSetAutoCheck
());
}
List
<
CostTemplate
>
costTemplateList
=
this
.
list
(
wrapper
);
List
<
CostTemplate
>
costTemplateList
=
this
.
list
(
wrapper
);
costTemplateColService
.
setCostTemplateCol
(
costTemplateList
);
costTemplateColService
.
setCostTemplateCol
(
costTemplateList
);
return
costTemplateList
;
return
costTemplateList
;
...
...
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