PayGoods.java 943 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.fdkankan.ucenter.httpClient.param;
  2. import lombok.Data;
  3. @Data
  4. public class PayGoods {
  5. private String name;
  6. private Integer count;
  7. private String sceneNum;
  8. private Integer type; //0专业会员,1高级会员,2下载,3配件
  9. private Integer goodsId;
  10. private Integer monthQy = 1;
  11. private String nameEn;
  12. public PayGoods(String name, String nameEn,Integer count,Integer type) {
  13. this.name = name;
  14. this.nameEn = nameEn;
  15. this.count = count;
  16. this.type = type;
  17. }
  18. public PayGoods(String name, Integer count,Integer type,Integer monthQy) {
  19. this.name = name;
  20. this.count = count;
  21. this.type = type;
  22. this.monthQy = monthQy;
  23. }
  24. public PayGoods(String name, Integer count,String sceneNum,Integer type) {
  25. this.name = name;
  26. this.count = count;
  27. this.sceneNum = sceneNum;
  28. this.type = type;
  29. }
  30. }