Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
operation-control-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王锦盛
operation-control-platform
Commits
7feab2ab
Commit
7feab2ab
authored
Mar 30, 2022
by
xxxxxwwwww
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
19dfecbb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/main/java/com/pms/ocp/model/dto/OcpBaseTiocnDto.java
src/main/java/com/pms/ocp/model/dto/OcpBaseTiocnDto.java
+3
-3
src/main/java/com/pms/ocp/service/impl/TenantBasicManagementServiceImpl.java
...ms/ocp/service/impl/TenantBasicManagementServiceImpl.java
+1
-1
No files found.
src/main/java/com/pms/ocp/model/dto/OcpBaseTiocnDto.java
View file @
7feab2ab
...
@@ -31,7 +31,7 @@ public class OcpBaseTiocnDto extends OcpTenantBase implements Serializable {
...
@@ -31,7 +31,7 @@ public class OcpBaseTiocnDto extends OcpTenantBase implements Serializable {
* 应用调用的服务数量图标数据
* 应用调用的服务数量图标数据
*/
*/
@ApiModelProperty
(
value
=
"应用调用的服务数量图标数据"
)
@ApiModelProperty
(
value
=
"应用调用的服务数量图标数据"
)
private
String
iocn
;
private
byte
[]
iocn
;
@ApiModelProperty
(
value
=
"图片类型"
)
@ApiModelProperty
(
value
=
"图片类型"
)
private
Object
iocnKind
;
private
Object
iocnKind
;
...
@@ -47,11 +47,11 @@ public class OcpBaseTiocnDto extends OcpTenantBase implements Serializable {
...
@@ -47,11 +47,11 @@ public class OcpBaseTiocnDto extends OcpTenantBase implements Serializable {
this
.
iocnType
=
iocnType
;
this
.
iocnType
=
iocnType
;
}
}
public
String
getIocn
()
{
public
byte
[]
getIocn
()
{
return
iocn
;
return
iocn
;
}
}
public
void
setIocn
(
String
iocn
)
{
public
void
setIocn
(
byte
[]
iocn
)
{
this
.
iocn
=
iocn
;
this
.
iocn
=
iocn
;
}
}
...
...
src/main/java/com/pms/ocp/service/impl/TenantBasicManagementServiceImpl.java
View file @
7feab2ab
...
@@ -454,7 +454,7 @@ public class TenantBasicManagementServiceImpl extends ServiceImpl<TenantBasicMan
...
@@ -454,7 +454,7 @@ public class TenantBasicManagementServiceImpl extends ServiceImpl<TenantBasicMan
String
ownerCompanyCode
=
ocpBaseTiocnDto
.
getOwnerCompanyCode
();
String
ownerCompanyCode
=
ocpBaseTiocnDto
.
getOwnerCompanyCode
();
ocpTenantIocn
.
setCodeNo
(
tenantCode
);
ocpTenantIocn
.
setCodeNo
(
tenantCode
);
ocpTenantIocn
.
setIocnType
(
"tenant"
);
ocpTenantIocn
.
setIocnType
(
"tenant"
);
//
ocpTenantIocn.setIocn(ocpBaseTiocnDto.getIocn());
ocpTenantIocn
.
setIocn
(
ocpBaseTiocnDto
.
getIocn
());
ocpTenantIocn
.
setCompanyCode
(
ownerCompanyCode
);
ocpTenantIocn
.
setCompanyCode
(
ownerCompanyCode
);
boolean
save
=
ocpTenantIocnService
.
save
(
ocpTenantIocn
);
boolean
save
=
ocpTenantIocnService
.
save
(
ocpTenantIocn
);
if
(
save1
&&
save
)
{
if
(
save1
&&
save
)
{
...
...
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