36 lines
776 B
Java
36 lines
776 B
Java
package com.xscm.moduleutil.bean;
|
|
|
|
import java.util.List;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @Author lxj$
|
|
* @Time 2025-8-2 10:46:27$ $
|
|
* @Description 首充好礼列表$
|
|
*/
|
|
@Data
|
|
public class FirstChargeGiftBean {
|
|
private String name;
|
|
private List<GiftBag> gift_bag;
|
|
@Data
|
|
public static class GiftBag {
|
|
private String name;
|
|
private String title1;
|
|
private String title2;
|
|
private String money;
|
|
private List<RoonGiftModel> gift_list;
|
|
private int status;
|
|
|
|
// @Data
|
|
// public static class GiftList {
|
|
// private String gift_name;
|
|
// private int num;
|
|
// private int gift_price;
|
|
// private int type;
|
|
// private String base_image;
|
|
//
|
|
// }
|
|
}
|
|
}
|