|
|
|
@@ -59,7 +59,7 @@ public class CouponInject implements Serializable { |
|
|
|
private String name; |
|
|
|
/***/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="",name="mUserId") |
|
|
|
private String mUserId; |
|
|
|
private Long mUserId; |
|
|
|
/*发送方式0:立即发送 1:定时发送**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="发送方式0:立即发送 1:定时发送",name="sendType") |
|
|
|
private Integer sendType; |
|
|
|
@@ -105,10 +105,10 @@ public class CouponInject implements Serializable { |
|
|
|
public void setName(String _name) { |
|
|
|
name = _name; |
|
|
|
} |
|
|
|
public String getMUserId() { |
|
|
|
public Long getMUserId() { |
|
|
|
return mUserId; |
|
|
|
} |
|
|
|
public void setMUserId(String _mUserId) { |
|
|
|
public void setMUserId(Long _mUserId) { |
|
|
|
mUserId = _mUserId; |
|
|
|
} |
|
|
|
public Integer getSendType() { |
|
|
|
|