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
58609977
Commit
58609977
authored
Nov 29, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
332e0d09
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
0 deletions
+20
-0
ComProjectEquipment.java
.../java/com/yiboshi/science/entity/ComProjectEquipment.java
+4
-0
ComProjectEquipmentDTO.java
...com/yiboshi/science/param/dto/ComProjectEquipmentDTO.java
+4
-0
ComProjectEquipmentQueryVO.java
...boshi/science/param/query/ComProjectEquipmentQueryVO.java
+4
-0
ComProjectServiceImpl.java
...m/yiboshi/science/service/impl/ComProjectServiceImpl.java
+8
-0
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComProjectEquipment.java
View file @
58609977
...
...
@@ -70,4 +70,7 @@ public class ComProjectEquipment extends BaseEntity {
/** 单价(万元/台套) */
@ApiModelProperty
(
value
=
"单价(万元/台套)"
,
position
=
3
)
private
BigDecimal
unitPrice
;
/** 拟开发共享范围 */
@ApiModelProperty
(
value
=
"拟开发共享范围"
,
position
=
3
)
private
String
sharedScope
;
}
\ No newline at end of file
science-admin/src/main/java/com/yiboshi/science/param/dto/ComProjectEquipmentDTO.java
View file @
58609977
...
...
@@ -68,4 +68,7 @@ public class ComProjectEquipmentDTO extends BaseDTO {
/** 单价(万元/台套) */
@ApiModelProperty
(
value
=
"单价(万元/台套)"
,
position
=
3
)
private
BigDecimal
unitPrice
;
/** 拟开发共享范围 */
@ApiModelProperty
(
value
=
"拟开发共享范围"
,
position
=
3
)
private
String
sharedScope
;
}
\ No newline at end of file
science-admin/src/main/java/com/yiboshi/science/param/query/ComProjectEquipmentQueryVO.java
View file @
58609977
...
...
@@ -72,4 +72,7 @@ public class ComProjectEquipmentQueryVO extends PaginationVO{
/** 单价(万元/台套) */
@ApiModelProperty
(
value
=
"单价(万元/台套)"
,
position
=
3
)
private
BigDecimal
unitPrice
;
/** 拟开发共享范围 */
@ApiModelProperty
(
value
=
"拟开发共享范围"
,
position
=
3
)
private
String
sharedScope
;
}
\ No newline at end of file
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectServiceImpl.java
View file @
58609977
...
...
@@ -627,6 +627,10 @@ public class ComProjectServiceImpl extends BaseServiceImpl<ComProjectDAO, ComPro
comProjectMembersService
.
insertList
(
dto
.
getMembers
(),
id
);
// 经费预算
comProjectBudgetService
.
insertBudgetList
(
dto
.
getBudget
(),
id
);
// 年度用款计划表
comProjectFundPlanService
.
insertList
(
dto
.
getFundPlan
(),
id
);
// 单位支出明细预算表
comProjectUnitPaymentService
.
insertList
(
dto
.
getUnitPayment
(),
id
);
// 项目经费构成表
comProjectFundCompositionService
.
insertList
(
dto
.
getFundCompositions
(),
id
);
// 仪器、设备
...
...
@@ -674,6 +678,10 @@ public class ComProjectServiceImpl extends BaseServiceImpl<ComProjectDAO, ComPro
comProjectMembersService
.
insertList
(
dto
.
getMembers
(),
comProject
.
getId
());
// 经费预算
comProjectBudgetService
.
insertBudgetList
(
dto
.
getBudget
(),
comProject
.
getId
());
// 年度用款计划表
comProjectFundPlanService
.
insertList
(
dto
.
getFundPlan
(),
comProject
.
getId
());
// 单位支出明细预算表
comProjectUnitPaymentService
.
insertList
(
dto
.
getUnitPayment
(),
comProject
.
getId
());
// 项目经费构成表
comProjectFundCompositionService
.
insertList
(
dto
.
getFundCompositions
(),
comProject
.
getId
());
// 仪器、设备
...
...
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