shikeyin
2024-01-17 5be90b09bd999cd380cf13acbbf09ed7246a9cc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ishop.model.response;
 
import java.io.Serializable;
import java.util.List;
 
public class RechargePackageResponse implements Serializable {
 
    public List<RechargeItemResponse> getPackageList() {
        return packageList;
    }
 
    public void setPackageList(List<RechargeItemResponse> packageList) {
        this.packageList = packageList;
    }
 
    public List<String> getNoticeList() {
        return noticeList;
    }
 
    public void setNoticeList(List<String> noticeList) {
        this.noticeList = noticeList;
    }
 
    //    @ApiModelProperty(value = "充值套餐列表")
    private List<RechargeItemResponse> packageList;
 
//    @ApiModelProperty(value = "注意事项")
    private List<String> noticeList;
}