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
a66cabd8
Commit
a66cabd8
authored
Dec 02, 2024
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
111
parent
77591b49
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
ComUnit.java
...min/src/main/java/com/yiboshi/science/entity/ComUnit.java
+5
-0
ComUnitDTO.java
...c/main/java/com/yiboshi/science/param/dto/ComUnitDTO.java
+4
-0
ComProjectServiceImpl.java
...m/yiboshi/science/service/impl/ComProjectServiceImpl.java
+2
-2
No files found.
science-admin/src/main/java/com/yiboshi/science/entity/ComUnit.java
View file @
a66cabd8
...
@@ -91,4 +91,8 @@ public class ComUnit extends BaseEntity {
...
@@ -91,4 +91,8 @@ public class ComUnit extends BaseEntity {
@ApiModelProperty
(
value
=
"审核时间"
,
position
=
7
)
@ApiModelProperty
(
value
=
"审核时间"
,
position
=
7
)
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
auditDate
;
private
Date
auditDate
;
/** 组织机构代码/统一社会信用代码 */
@ApiModelProperty
(
value
=
"组织机构代码/统一社会信用代码"
,
position
=
1
)
@Length
(
max
=
50
,
message
=
"组织机构代码/统一社会信用代码不能大于50"
)
private
String
organizationCode
;
}
}
\ No newline at end of file
science-admin/src/main/java/com/yiboshi/science/param/dto/ComUnitDTO.java
View file @
a66cabd8
...
@@ -71,6 +71,10 @@ public class ComUnitDTO extends BaseDTO {
...
@@ -71,6 +71,10 @@ public class ComUnitDTO extends BaseDTO {
@ApiModelProperty
(
value
=
"审核时间"
,
position
=
7
)
@ApiModelProperty
(
value
=
"审核时间"
,
position
=
7
)
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
timezone
=
"GMT+8"
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
auditDate
;
private
Date
auditDate
;
/** 组织机构代码/统一社会信用代码 */
@ApiModelProperty
(
value
=
"组织机构代码/统一社会信用代码"
,
position
=
1
)
@Length
(
max
=
50
,
message
=
"组织机构代码/统一社会信用代码不能大于50"
)
private
String
organizationCode
;
/** 单位类型 */
/** 单位类型 */
@ApiModelProperty
(
value
=
"单位类型"
,
position
=
14
)
@ApiModelProperty
(
value
=
"单位类型"
,
position
=
14
)
...
...
science-admin/src/main/java/com/yiboshi/science/service/impl/ComProjectServiceImpl.java
View file @
a66cabd8
...
@@ -253,7 +253,7 @@ public class ComProjectServiceImpl extends BaseServiceImpl<ComProjectDAO, ComPro
...
@@ -253,7 +253,7 @@ public class ComProjectServiceImpl extends BaseServiceImpl<ComProjectDAO, ComPro
if
(
null
!=
comUnitDTO
)
{
if
(
null
!=
comUnitDTO
)
{
dto
.
setAppUnitName
(
comUnitDTO
.
getUnitName
());
dto
.
setAppUnitName
(
comUnitDTO
.
getUnitName
());
dto
.
setUnitTypeName
(
comUnitDTO
.
getUnitTypeName
());
dto
.
setUnitTypeName
(
comUnitDTO
.
getUnitTypeName
());
dto
.
setOrganizationCode
(
null
);
dto
.
setOrganizationCode
(
comUnitDTO
.
getOrganizationCode
()
);
dto
.
setAddress
(
comUnitDTO
.
getUnitAddress
());
dto
.
setAddress
(
comUnitDTO
.
getUnitAddress
());
dto
.
setLegalPerson
(
null
);
dto
.
setLegalPerson
(
null
);
dto
.
setDepositBank
(
null
);
dto
.
setDepositBank
(
null
);
...
@@ -300,7 +300,7 @@ public class ComProjectServiceImpl extends BaseServiceImpl<ComProjectDAO, ComPro
...
@@ -300,7 +300,7 @@ public class ComProjectServiceImpl extends BaseServiceImpl<ComProjectDAO, ComPro
if
(
null
!=
comUnitDTO
)
{
if
(
null
!=
comUnitDTO
)
{
dto
.
setAppUnitName
(
comUnitDTO
.
getUnitName
());
dto
.
setAppUnitName
(
comUnitDTO
.
getUnitName
());
dto
.
setUnitTypeName
(
comUnitDTO
.
getUnitTypeName
());
dto
.
setUnitTypeName
(
comUnitDTO
.
getUnitTypeName
());
// dto.setOrganizationCode(
null
);
// dto.setOrganizationCode(
comUnitDTO.getOrganizationCode()
);
// dto.setAddress(comUnitDTO.getUnitAddress());
// dto.setAddress(comUnitDTO.getUnitAddress());
// dto.setLegalPerson(null);
// dto.setLegalPerson(null);
// dto.setDepositBank(null);
// dto.setDepositBank(null);
...
...
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