zxl
8 天以前 f62ad2c519d21ebbf69aeeaf7b7c26739687427c
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;
 
}