fix
This commit is contained in:
@@ -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
|
||||
*/
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user