Commit 7feab2ab authored by xxxxxwwwww's avatar xxxxxwwwww

修改

parent 19dfecbb
......@@ -31,7 +31,7 @@ public class OcpBaseTiocnDto extends OcpTenantBase implements Serializable {
* 应用调用的服务数量图标数据
*/
@ApiModelProperty(value = "应用调用的服务数量图标数据")
private String iocn;
private byte[] iocn;
@ApiModelProperty(value = "图片类型")
private Object iocnKind;
......@@ -47,11 +47,11 @@ public class OcpBaseTiocnDto extends OcpTenantBase implements Serializable {
this.iocnType = iocnType;
}
public String getIocn() {
public byte[] getIocn() {
return iocn;
}
public void setIocn(String iocn) {
public void setIocn(byte[] iocn) {
this.iocn = iocn;
}
......
......@@ -454,7 +454,7 @@ public class TenantBasicManagementServiceImpl extends ServiceImpl<TenantBasicMan
String ownerCompanyCode = ocpBaseTiocnDto.getOwnerCompanyCode();
ocpTenantIocn.setCodeNo(tenantCode);
ocpTenantIocn.setIocnType("tenant");
// ocpTenantIocn.setIocn(ocpBaseTiocnDto.getIocn());
ocpTenantIocn.setIocn(ocpBaseTiocnDto.getIocn());
ocpTenantIocn.setCompanyCode(ownerCompanyCode);
boolean save = ocpTenantIocnService.save(ocpTenantIocn);
if (save1 && save) {
......
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