zxl
5 天以前 2701dca44e1972afe9956ced2f949d2998c1bb4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package cn.lili.modules.store.entity.vos;
 
import cn.lili.common.utils.BeanUtil;
import cn.lili.modules.goods.entity.dos.Category;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
 
/**
 * 店铺经营范围
 * @author Bulbasaur
 * @since 2020/12/11 16:18
 */
@Data
@NoArgsConstructor
public class StoreManagementCategoryVO extends Category {
 
    @ApiModelProperty(value = "已选择")
    private Boolean selected;
 
    public StoreManagementCategoryVO(Category category) {
        BeanUtil.copyProperties(this, category);
    }
 
}