This commit is contained in:
guohb
2024-04-28 11:35:00 +08:00
parent a872a59f39
commit 21be2bd332
5 changed files with 31 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
package com.cool.store.entity;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiParam;
import java.util.Date;
import javax.persistence.*;
@@ -87,6 +88,17 @@ public class ShopAuditInfoDO {
@ApiModelProperty("数据类型 0-提交 1-审批")
private Integer dataType;
@ApiModelProperty("头像")
private String avatar = "https://oss-store.coolcollege.cn/eid/e17cd2dc350541df8a8b0af9bd27f77d/2404/53308197437354940.png";
public String getAvatar() {
return avatar;
}
public void setAvatar(String avatar) {
this.avatar = avatar;
}
/**
* @return id
*/

View File

@@ -99,6 +99,8 @@ public class SystemBuildingShopDO {
private Date createTime;
@Column(name = "update_time")
private Date updateTime;
@Column(name = "store_name")
private String storeName;
@@ -172,6 +174,7 @@ public class SystemBuildingShopDO {
systemBuildingShopDO.setRegioGeneral(sysStoreAppRequest.getSupervisorDetail().getRegioGeneral());
// regioGeneralId
systemBuildingShopDO.setRegioGeneralId(sysStoreAppRequest.getSupervisorDetail().getRegioGeneralId());
systemBuildingShopDO.setStoreName(sysStoreAppRequest.getStoreDetail().getStoreName());
return systemBuildingShopDO;
}
}