|
|
|
@@ -55,13 +55,13 @@ public class WxMsgConfig implements Serializable { |
|
|
|
private String bid; |
|
|
|
/*充值条数**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="充值条数",name="recharge") |
|
|
|
private Integer recharge; |
|
|
|
private Long recharge; |
|
|
|
/*剩余条数**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="剩余条数",name="remains") |
|
|
|
private Integer remains; |
|
|
|
private Long remains; |
|
|
|
/*短信总数**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="短信总数",name="total") |
|
|
|
private Integer total; |
|
|
|
private Long total; |
|
|
|
/***/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="",name="account") |
|
|
|
private String account; |
|
|
|
@@ -70,7 +70,7 @@ public class WxMsgConfig implements Serializable { |
|
|
|
private Integer reminderstatus; |
|
|
|
/***/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="",name="reminder") |
|
|
|
private Integer reminder; |
|
|
|
private Long reminder; |
|
|
|
/***/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="",name="phone") |
|
|
|
private String phone; |
|
|
|
@@ -98,22 +98,22 @@ public class WxMsgConfig implements Serializable { |
|
|
|
public void setBid(String _bid) { |
|
|
|
bid = _bid; |
|
|
|
} |
|
|
|
public Integer getRecharge() { |
|
|
|
public Long getRecharge() { |
|
|
|
return recharge; |
|
|
|
} |
|
|
|
public void setRecharge(Integer _recharge) { |
|
|
|
public void setRecharge(Long _recharge) { |
|
|
|
recharge = _recharge; |
|
|
|
} |
|
|
|
public Integer getRemains() { |
|
|
|
public Long getRemains() { |
|
|
|
return remains; |
|
|
|
} |
|
|
|
public void setRemains(Integer _remains) { |
|
|
|
public void setRemains(Long _remains) { |
|
|
|
remains = _remains; |
|
|
|
} |
|
|
|
public Integer getTotal() { |
|
|
|
public Long getTotal() { |
|
|
|
return total; |
|
|
|
} |
|
|
|
public void setTotal(Integer _total) { |
|
|
|
public void setTotal(Long _total) { |
|
|
|
total = _total; |
|
|
|
} |
|
|
|
public String getAccount() { |
|
|
|
@@ -128,10 +128,10 @@ public class WxMsgConfig implements Serializable { |
|
|
|
public void setReminderstatus(Integer _reminderstatus) { |
|
|
|
reminderstatus = _reminderstatus; |
|
|
|
} |
|
|
|
public Integer getReminder() { |
|
|
|
public Long getReminder() { |
|
|
|
return reminder; |
|
|
|
} |
|
|
|
public void setReminder(Integer _reminder) { |
|
|
|
public void setReminder(Long _reminder) { |
|
|
|
reminder = _reminder; |
|
|
|
} |
|
|
|
public String getPhone() { |
|
|
|
|