12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- 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;
- private BigDecimal price;
- public BigDecimal getPrice() {
- return price;
- }
- public void setPrice(BigDecimal price) {
- this.price = price;
- }
- 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;
- }
- }
|