Commit 8d77907e authored by 郭凡凡's avatar 郭凡凡

更新

parent 333e59af
...@@ -28,7 +28,7 @@ public class AppRegisterDTO { ...@@ -28,7 +28,7 @@ public class AppRegisterDTO {
@ApiModelProperty("应用图标") @ApiModelProperty("应用图标")
@NotBlank(message = "应用图标不能为空", groups = CreateGroups.class) @NotBlank(message = "应用图标不能为空", groups = CreateGroups.class)
private byte[] imgUrl; private String imgUrl;
@ApiModelProperty("应用名称") @ApiModelProperty("应用名称")
@NotBlank(message = "应用名称不能为空", groups = CreateGroups.class) @NotBlank(message = "应用名称不能为空", groups = CreateGroups.class)
...@@ -165,11 +165,11 @@ public class AppRegisterDTO { ...@@ -165,11 +165,11 @@ public class AppRegisterDTO {
this.time = time; this.time = time;
} }
public byte[] getImgUrl() { public String getImgUrl() {
return imgUrl; return imgUrl;
} }
public void setImgUrl(byte[] imgUrl) { public void setImgUrl(String imgUrl) {
this.imgUrl = imgUrl; this.imgUrl = imgUrl;
} }
......
...@@ -20,7 +20,7 @@ public class ImgDTO { ...@@ -20,7 +20,7 @@ public class ImgDTO {
@ApiModelProperty(value = "应用预览url") @ApiModelProperty(value = "应用预览url")
@NotBlank(message = "应用预览url不能为空", groups = CreateGroups.class) @NotBlank(message = "应用预览url不能为空", groups = CreateGroups.class)
private byte[] img; private String img;
public String getTenantCode() { public String getTenantCode() {
return tenantCode; return tenantCode;
...@@ -30,11 +30,11 @@ public class ImgDTO { ...@@ -30,11 +30,11 @@ public class ImgDTO {
this.tenantCode = tenantCode; this.tenantCode = tenantCode;
} }
public byte[] getImg() { public String getImg() {
return img; return img;
} }
public void setImg(byte[] img) { public void setImg(String img) {
this.img = img; this.img = img;
} }
} }
......
...@@ -40,7 +40,7 @@ public class OcpTenantIocn implements Serializable { ...@@ -40,7 +40,7 @@ public class OcpTenantIocn implements Serializable {
* 应用调用的服务数量图标数据 * 应用调用的服务数量图标数据
*/ */
@ApiModelProperty(value = "应用调用的服务数量图标数据") @ApiModelProperty(value = "应用调用的服务数量图标数据")
private byte[] iocn; private String iocn;
@ApiModelProperty(value = "图片类型") @ApiModelProperty(value = "图片类型")
private Object iocnKind; private Object iocnKind;
...@@ -77,11 +77,11 @@ public class OcpTenantIocn implements Serializable { ...@@ -77,11 +77,11 @@ public class OcpTenantIocn implements Serializable {
this.codeNo = codeNo; this.codeNo = codeNo;
} }
public byte[] getIocn() { public String getIocn() {
return iocn; return iocn;
} }
public void setIocn(byte[] iocn) { public void setIocn(String iocn) {
this.iocn = iocn; this.iocn = iocn;
} }
......
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