123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.fuint.common.dto;
- import java.io.Serializable;
- /**
- * 发放卡券请求DTO
- *
- * Created by FSQ
- * CopyRight https://www.fuint.cn
- */
- public class ReqSendCouponDto implements Serializable {
- /**
- * 分组ID
- * */
- private Integer group_id;
- /**
- * 手机号
- */
- private String mobile;
- /**
- * 发放数量
- */
- private Integer num;
- public Integer getGroupId() {
- return group_id;
- }
- public void setGroupId(Integer group_id) {
- this.group_id = group_id;
- }
- public String getMobile() {
- return mobile;
- }
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- public Integer getNum() {
- return num;
- }
- public void setNum(Integer num) {
- this.num = num;
- }
- }
|