xiangpei
2025-06-03 4833a836e3c180275bc72d7023477c407e2e43f2
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;
 
}