package com.doumee.dao.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
public class ShopCenterVO {
|
|
@ApiModelProperty(value = "门店头像全路径")
|
private String fullCoverImg;
|
|
@ApiModelProperty(value = "门店头像半路径")
|
private String coverImg;
|
|
@ApiModelProperty(value = "门店名称")
|
private String shopName;
|
|
@ApiModelProperty(value = "联系人名称")
|
private String linkName;
|
|
@ApiModelProperty(value = "门店类型:0=个人;1=企业")
|
private Integer companyType;
|
|
@ApiModelProperty(value = "是否有消息")
|
private Boolean hasMessage;
|
|
@ApiModelProperty(value = "待核验订单数量")
|
private Integer waitDepositCount;
|
|
@ApiModelProperty(value = "待收货订单数量")
|
private Integer waitReceiveCount;
|
|
}
|