Commit 941e8f0a authored by 郭凡凡's avatar 郭凡凡

修改

parent f07c3338
......@@ -31,7 +31,7 @@ public class OcpBaseTiocnDto extends OcpTenantBase implements Serializable {
* 应用调用的服务数量图标数据
*/
@ApiModelProperty(value = "应用调用的服务数量图标数据")
private Object iocn;
private String iocn;
@ApiModelProperty(value = "图片类型")
private Object iocnKind;
......@@ -47,15 +47,21 @@ public class OcpBaseTiocnDto extends OcpTenantBase implements Serializable {
this.iocnType = iocnType;
}
public Object getIocn() {
public String getIocn() {
return iocn;
}
public void setIocn(Object iocn) {
public void setIocn(String iocn) {
this.iocn = iocn;
}
public Object getIocnKind() {
return iocnKind;
}
public void setIocnKind(Object iocnKind) {
this.iocnKind = iocnKind;
}
public String getApiCodes() {
return apiCodes;
......
......@@ -437,7 +437,7 @@ public class TenantBasicManagementServiceImpl extends ServiceImpl<TenantBasicMan
//添加新的数据到图标表
OcpTenantIocn ocpTenantIocn = new OcpTenantIocn();
Object iocn = ocpBaseTiocnDto.getIocn();
String iocn = ocpBaseTiocnDto.getIocn();
String ownerCompanyCode = ocpBaseTiocnDto.getOwnerCompanyCode();
ocpTenantIocn.setCodeNo(tenantCode);
ocpTenantIocn.setIocnType("tenant");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment