xiangpei
2025-05-13 9b811f9e7de77fe31e67df9396734ec9d52cdae1
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;
 
}