ReqSendCouponDto.java 817 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.fuint.common.dto;
  2. import java.io.Serializable;
  3. /**
  4. * 发放卡券请求DTO
  5. *
  6. * Created by FSQ
  7. * CopyRight https://www.fuint.cn
  8. */
  9. public class ReqSendCouponDto implements Serializable {
  10. /**
  11. * 分组ID
  12. * */
  13. private Integer group_id;
  14. /**
  15. * 手机号
  16. */
  17. private String mobile;
  18. /**
  19. * 发放数量
  20. */
  21. private Integer num;
  22. public Integer getGroupId() {
  23. return group_id;
  24. }
  25. public void setGroupId(Integer group_id) {
  26. this.group_id = group_id;
  27. }
  28. public String getMobile() {
  29. return mobile;
  30. }
  31. public void setMobile(String mobile) {
  32. this.mobile = mobile;
  33. }
  34. public Integer getNum() {
  35. return num;
  36. }
  37. public void setNum(Integer num) {
  38. this.num = num;
  39. }
  40. }