| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.ym.mec.collectfee.entity;
- import com.thoughtworks.xstream.annotations.XStreamAlias;
- import java.math.BigDecimal;
- @XStreamAlias("body")
- public class RenewBean {
- private Integer userId;
- private Integer classId;
- private Integer way;
- private BigDecimal pay;
- private Integer chargeMode;
- private BigDecimal buy;
- private String remark;
- public Integer getUserId() {
- return userId;
- }
- public void setUserId(Integer userId) {
- this.userId = userId;
- }
- public Integer getClassId() {
- return classId;
- }
- public void setClassId(Integer classId) {
- this.classId = classId;
- }
- public Integer getWay() {
- return way;
- }
- public void setWay(Integer way) {
- this.way = way;
- }
- public BigDecimal getPay() {
- return pay;
- }
- public void setPay(BigDecimal pay) {
- this.pay = pay;
- }
- public Integer getChargeMode() {
- return chargeMode;
- }
- public void setChargeMode(Integer chargeMode) {
- this.chargeMode = chargeMode;
- }
- public BigDecimal getBuy() {
- return buy;
- }
- public void setBuy(BigDecimal buy) {
- this.buy = buy;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- }
|