买家端bugfix
This commit is contained in:
@@ -393,6 +393,8 @@ public class DesignerServiceImpl extends ServiceImpl<DesignerMapper, DesignerEnt
|
||||
vo.setOwnerName(entity.getOwnerName());
|
||||
vo.setDescription(entity.getDescription());
|
||||
vo.setSocialLinks(entity.getSocialLinks());
|
||||
vo.setEmail(entity.getEmail());
|
||||
vo.setMobile(entity.getMobile());
|
||||
return vo;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,4 +29,10 @@ public class DesignerShopVO implements Serializable {
|
||||
|
||||
/** 社交媒体链接(JSON 字符串) */
|
||||
private String socialLinks;
|
||||
|
||||
/** 邮箱 */
|
||||
private String email;
|
||||
|
||||
/** 手机号 */
|
||||
private String mobile;
|
||||
}
|
||||
|
||||
@@ -188,6 +188,7 @@ public class ListingMallServiceImpl extends ServiceImpl<ListingMallMapper, Listi
|
||||
vo.setTitle(entity.getTitle());
|
||||
vo.setPrice(entity.getPrice());
|
||||
vo.setStatus(entity.getStatus());
|
||||
vo.setProductCategory(entity.getProductCategory());
|
||||
return vo;
|
||||
})
|
||||
.toList();
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
package com.aida.seller.module.listing.vo;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 商城首页商品 VO
|
||||
@@ -24,4 +27,7 @@ public class ListingMallVO implements Serializable {
|
||||
private BigDecimal price;
|
||||
|
||||
private Integer status;
|
||||
|
||||
/** 商品分类列表 */
|
||||
private List<String> productCategory;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user