Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
Y
yn-health-science
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
徐俊
yn-health-science
Commits
de5fb9ea
Commit
de5fb9ea
authored
Nov 28, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
ab76ccfd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
2 deletions
+14
-2
ComProjectFundPlan.java
...n/java/com/yiboshi/science/entity/ComProjectFundPlan.java
+4
-1
ComProjectFundPlanDTO.java
.../com/yiboshi/science/param/dto/ComProjectFundPlanDTO.java
+4
-0
ComProjectFundPlanQueryVO.java
...iboshi/science/param/query/ComProjectFundPlanQueryVO.java
+4
-0
ComProjectFundPlanServiceImpl.java
...i/science/service/impl/ComProjectFundPlanServiceImpl.java
+1
-0
ComProjectFundPlanDAO.xml
...admin/src/main/resources/mapper/ComProjectFundPlanDAO.xml
+1
-1
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComProjectFundPlan.java
View file @
de5fb9ea
...
...
@@ -43,5 +43,7 @@ public class ComProjectFundPlan extends BaseEntity {
/** 年度5资金数额 */
@ApiModelProperty
(
value
=
"年度5资金数额"
,
position
=
3
)
private
BigDecimal
yearValue5
;
/** 总金额 */
@ApiModelProperty
(
value
=
"总金额"
,
position
=
3
)
private
BigDecimal
totalAmount
;
}
\ No newline at end of file
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectFundPlanDTO.java
View file @
de5fb9ea
...
...
@@ -46,4 +46,7 @@ public class ComProjectFundPlanDTO extends BaseDTO {
/** 年度5资金数额 */
@ApiModelProperty
(
value
=
"年度5资金数额"
,
position
=
3
)
private
BigDecimal
yearValue5
;
/** 总金额 */
@ApiModelProperty
(
value
=
"总金额"
,
position
=
3
)
private
BigDecimal
totalAmount
;
}
\ No newline at end of file
science-admin/src/main/java/com/yiboshi/science/param/query/ComProjectFundPlanQueryVO.java
View file @
de5fb9ea
...
...
@@ -43,4 +43,7 @@ public class ComProjectFundPlanQueryVO extends PaginationVO{
/** 年度5资金数额 */
@ApiModelProperty
(
value
=
"年度5资金数额"
,
position
=
3
)
private
BigDecimal
yearValue5
;
/** 总金额 */
@ApiModelProperty
(
value
=
"总金额"
,
position
=
3
)
private
BigDecimal
totalAmount
;
}
\ No newline at end of file
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectFundPlanServiceImpl.java
View file @
de5fb9ea
...
...
@@ -46,6 +46,7 @@ public class ComProjectFundPlanServiceImpl extends BaseServiceImpl<ComProjectFun
newVO
.
setYearValue3
(
new
BigDecimal
(
0.00
));
newVO
.
setYearValue4
(
new
BigDecimal
(
0.00
));
newVO
.
setYearValue5
(
new
BigDecimal
(
0.00
));
newVO
.
setTotalAmount
(
new
BigDecimal
(
0.00
));
newVO
.
setFundName
(
e
.
getName
());
fundPlanList
.
add
(
newVO
);
});
...
...
science-admin/src/main/resources/mapper/ComProjectFundPlanDAO.xml
View file @
de5fb9ea
...
...
@@ -4,7 +4,7 @@
<!-- 经费申请表(任务书/项目申请书) -->
<mapper
namespace=
"com.yiboshi.science.dao.ComProjectFundPlanDAO"
>
<sql
id=
"allColumns"
>
id, fund_id, object_id, year_value1, year_value2, year_value3, year_value4, year_value5, created, updated
id, fund_id, object_id, year_value1, year_value2, year_value3, year_value4, year_value5,
total_amount,
created, updated
</sql>
<select
id=
"getListByObjectId"
parameterType=
"java.lang.String"
resultType=
"com.yiboshi.science.param.dto.ComProjectFundPlanDTO"
>
SELECT a.*, b.name as fundName
...
...
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