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
bd5dbb85
Commit
bd5dbb85
authored
Mar 01, 2024
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
费用单审核日志增加费用金额
parent
48b034b5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
ApprovalHistoryVo.java
.../java/com/blt/other/module/cost/vo/ApprovalHistoryVo.java
+4
-0
ApprovalHistoryMapper.xml
...rvice/src/main/resources/mapper/ApprovalHistoryMapper.xml
+1
-1
No files found.
cost-service/src/main/java/com/blt/other/module/cost/vo/ApprovalHistoryVo.java
View file @
bd5dbb85
...
...
@@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.time.LocalDateTime
;
/**
...
...
@@ -44,4 +45,7 @@ public class ApprovalHistoryVo {
@ApiModelProperty
(
"费用类型"
)
private
String
typeName
;
@ApiModelProperty
(
"金额"
)
private
BigDecimal
amount
;
}
cost-service/src/main/resources/mapper/ApprovalHistoryMapper.xml
View file @
bd5dbb85
...
...
@@ -6,7 +6,7 @@
<select
id=
"getApprovalHistoryList"
resultType=
"com.blt.other.module.cost.vo.ApprovalHistoryVo"
>
select ah.id, ah.cost_no as costNo ,c.cost_form as costFrom,c.is_lend as isLend, s2.statusvalue as costStatus
,ah.is_passed as isPassed ,ah.approval_time as approvalTime ,c.type_name as typeName,u.username
,ah.is_passed as isPassed ,ah.approval_time as approvalTime ,c.type_name as typeName,u.username
,c.amount as amount
from approval_history ah
left join cost c on c.cost_no = ah.cost_no
left join `user` u on u.userid = ah.approval_user_id
...
...
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