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
d416ab61
Commit
d416ab61
authored
Feb 24, 2025
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增体系,内部备注,内部分类
parent
fc135df1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
1 deletion
+13
-1
ResetItemReq.java
...a/com/blt/other/module/cost/dto/request/ResetItemReq.java
+3
-0
ResetReq.java
.../java/com/blt/other/module/cost/dto/request/ResetReq.java
+2
-0
CostDetailDomain.java
...ava/com/blt/other/module/cost/model/CostDetailDomain.java
+2
-0
CostDomain.java
...main/java/com/blt/other/module/cost/model/CostDomain.java
+6
-0
CostPlanTempServiceImpl.java
...e/cost/service/impl/costplan/CostPlanTempServiceImpl.java
+0
-1
No files found.
cost-service/src/main/java/com/blt/other/module/cost/dto/request/ResetItemReq.java
View file @
d416ab61
...
@@ -44,6 +44,9 @@ public class ResetItemReq {
...
@@ -44,6 +44,9 @@ public class ResetItemReq {
@ApiModelProperty
(
"费用类型编号"
)
@ApiModelProperty
(
"费用类型编号"
)
private
String
typeNo
;
// 大类编号
private
String
typeNo
;
// 大类编号
@ApiModelProperty
(
"内部分类"
)
private
String
typeInnerName
;
// 内部分类
@ApiModelProperty
(
"所属项目"
)
@ApiModelProperty
(
"所属项目"
)
private
String
project
;
// 所属项目
private
String
project
;
// 所属项目
...
...
cost-service/src/main/java/com/blt/other/module/cost/dto/request/ResetReq.java
View file @
d416ab61
...
@@ -29,6 +29,8 @@ public class ResetReq {
...
@@ -29,6 +29,8 @@ public class ResetReq {
private
String
typeNo
;
private
String
typeNo
;
@ApiModelProperty
(
"类型标题"
)
@ApiModelProperty
(
"类型标题"
)
private
String
typeName
;
private
String
typeName
;
@ApiModelProperty
(
"内部分类"
)
private
String
typeInnerName
;
@ApiModelProperty
(
"会计一级科目"
)
@ApiModelProperty
(
"会计一级科目"
)
private
String
accountingSubjectNo
;
private
String
accountingSubjectNo
;
@ApiModelProperty
(
"会计一级科目"
)
@ApiModelProperty
(
"会计一级科目"
)
...
...
cost-service/src/main/java/com/blt/other/module/cost/model/CostDetailDomain.java
View file @
d416ab61
...
@@ -31,6 +31,8 @@ public class CostDetailDomain {
...
@@ -31,6 +31,8 @@ public class CostDetailDomain {
private
String
typeNo
;
private
String
typeNo
;
@ApiModelProperty
(
"类型标题"
)
@ApiModelProperty
(
"类型标题"
)
private
String
typeName
;
private
String
typeName
;
@ApiModelProperty
(
"内部分类"
)
private
String
typeInnerName
;
@ApiModelProperty
(
"类型类别"
)
@ApiModelProperty
(
"类型类别"
)
private
String
categoryName
;
private
String
categoryName
;
...
...
cost-service/src/main/java/com/blt/other/module/cost/model/CostDomain.java
View file @
d416ab61
...
@@ -76,6 +76,8 @@ public class CostDomain implements Serializable {
...
@@ -76,6 +76,8 @@ public class CostDomain implements Serializable {
private
Integer
costDepartmentId
;
private
Integer
costDepartmentId
;
@ApiModelProperty
(
"体系"
)
private
String
companySystem
;
@ApiModelProperty
(
"主体编号"
)
@ApiModelProperty
(
"主体编号"
)
private
String
companyNo
;
private
String
companyNo
;
@ApiModelProperty
(
"主体名称"
)
@ApiModelProperty
(
"主体名称"
)
...
@@ -88,6 +90,8 @@ public class CostDomain implements Serializable {
...
@@ -88,6 +90,8 @@ public class CostDomain implements Serializable {
private
String
typeNo
;
private
String
typeNo
;
@ApiModelProperty
(
"类型标题"
)
@ApiModelProperty
(
"类型标题"
)
private
String
typeName
;
private
String
typeName
;
@ApiModelProperty
(
"内部分类"
)
private
String
typeInnerName
;
@ApiModelProperty
(
"类型类别"
)
@ApiModelProperty
(
"类型类别"
)
private
String
categoryName
;
private
String
categoryName
;
...
@@ -116,6 +120,8 @@ public class CostDomain implements Serializable {
...
@@ -116,6 +120,8 @@ public class CostDomain implements Serializable {
@ApiModelProperty
(
"费用单备注"
)
@ApiModelProperty
(
"费用单备注"
)
private
String
costRemark
;
private
String
costRemark
;
@ApiModelProperty
(
"内部备注"
)
private
String
innerRemark
;
@ApiModelProperty
(
"创建时间"
)
@ApiModelProperty
(
"创建时间"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
createTime
;
private
Date
createTime
;
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costplan/CostPlanTempServiceImpl.java
View file @
d416ab61
...
@@ -88,7 +88,6 @@ public class CostPlanTempServiceImpl implements CostPlanTempService {
...
@@ -88,7 +88,6 @@ public class CostPlanTempServiceImpl implements CostPlanTempService {
costPlanTempDomain
.
setTypeId
(
costTypeDomain
.
getId
());
costPlanTempDomain
.
setTypeId
(
costTypeDomain
.
getId
());
costPlanTempDomain
.
setTypeNo
(
costTypeDomain
.
getTypeNo
());
costPlanTempDomain
.
setTypeNo
(
costTypeDomain
.
getTypeNo
());
costPlanTempDomain
.
setTypeName
(
costTypeDomain
.
getTypeName
());
costPlanTempDomain
.
setTypeName
(
costTypeDomain
.
getTypeName
());
costPlanTempDomain
.
setTypeInnerName
(
costTypeDomain
.
getTypeInnerName
());
AccountingSubject
accountingSubject
=
accountingSubjectMapper
.
selectById
(
costTypeDomain
.
getAccountingSubjectId
());
AccountingSubject
accountingSubject
=
accountingSubjectMapper
.
selectById
(
costTypeDomain
.
getAccountingSubjectId
());
...
...
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