Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
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
fangxinjiang
yifu-mvp
Commits
a9a7cec5
Commit
a9a7cec5
authored
Feb 23, 2023
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.5.1-收入证明等
parent
e6d74f2e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
TProveRecord.java
...yifu/cloud/plus/v1/yifu/archives/entity/TProveRecord.java
+2
-0
SalaryProveController.java
...us/v1/yifu/archives/controller/SalaryProveController.java
+2
-2
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TProveRecord.java
View file @
a9a7cec5
...
...
@@ -257,9 +257,11 @@ public class TProveRecord extends Model<TProveRecord> {
@Schema
(
description
=
"导出的表头的Set"
)
private
Set
<
String
>
exportFields
;
@TableField
(
exist
=
false
)
@Schema
(
description
=
"查询limit 开始"
)
private
int
limitStart
;
@TableField
(
exist
=
false
)
@Schema
(
description
=
"查询limit 数据条数"
)
private
int
limitEnd
;
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/SalaryProveController.java
View file @
a9a7cec5
...
...
@@ -215,14 +215,14 @@ public class SalaryProveController {
*/
@Operation
(
summary
=
"证明记录展示页面"
)
@GetMapping
(
value
=
"/printing/{id}"
)
public
R
printing
(
@PathVariable
String
id
)
{
public
R
<
TProveRecord
>
printing
(
@PathVariable
String
id
)
{
TProveRecord
re
=
tProveRecordService
.
getById
(
id
);
if
(
re
!=
null
)
{
re
.
setCapital
(
NumberToCN
.
number2CNMontrayUnit
(
re
.
getProveSalary
()));
}
else
{
return
R
.
failed
(
"无此记录!"
);
}
return
new
R
(
re
);
return
R
.
ok
(
re
);
}
/**
...
...
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