| 1234567891011121314151617181920212223242526272829303132333435 |
- package com.fdkankan.ucenter.httpClient.param;
- import lombok.Data;
- @Data
- public class PayGoods {
- private String name;
- private Integer count;
- private String sceneNum;
- private Integer type; //0专业会员,1高级会员,2下载,3配件
- private Integer goodsId;
- private Integer monthQy = 1;
- private String nameEn;
- public PayGoods(String name, String nameEn,Integer count,Integer type) {
- this.name = name;
- this.nameEn = nameEn;
- this.count = count;
- this.type = type;
- }
- public PayGoods(String name, Integer count,Integer type,Integer monthQy) {
- this.name = name;
- this.count = count;
- this.type = type;
- this.monthQy = monthQy;
- }
- public PayGoods(String name, Integer count,String sceneNum,Integer type) {
- this.name = name;
- this.count = count;
- this.sceneNum = sceneNum;
- this.type = type;
- }
- }
|