peng
2025-10-29 0c9521d93a745de0ec71d83c094a6047c0222398
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.lili.modules.promotion.entity.vos;
 
import cn.lili.modules.promotion.entity.dos.PromotionGoods;
import lombok.Data;
 
import java.util.List;
 
/**
 * 拼图会员分享对象
 *
 * @author paulG
 * @since 2021/3/24
 **/
@Data
public class PintuanShareVO {
 
    private PromotionGoods promotionGoods;
 
    private List<PintuanMemberVO> pintuanMemberVOS;
 
}