zxl
2025-06-11 05e49980cd556d24239e00d028dc5efa25e0de14
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
26
27
28
29
30
package cn.lili.modules.promotion.entity.vos;
 
import cn.lili.modules.promotion.entity.dos.Pintuan;
import cn.lili.modules.promotion.entity.dos.PromotionGoods;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import org.springframework.beans.BeanUtils;
 
import java.util.List;
 
/**
 * 拼团视图对象
 *
 * @author paulG
 * @since 2020/10/28
 **/
@EqualsAndHashCode(callSuper = true)
@Data
@NoArgsConstructor
public class PintuanVO extends Pintuan {
 
    private static final long serialVersionUID = 218582640653676201L;
 
    private List<PromotionGoods> promotionGoodsList;
 
    public PintuanVO(Pintuan pintuan) {
        BeanUtils.copyProperties(pintuan, this);
    }
}