RenewBean.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.ym.mec.collectfee.entity;
  2. import com.thoughtworks.xstream.annotations.XStreamAlias;
  3. import java.math.BigDecimal;
  4. @XStreamAlias("body")
  5. public class RenewBean {
  6. private Integer userId;
  7. private Integer classId;
  8. private Integer way;
  9. private BigDecimal pay;
  10. private Integer chargeMode;
  11. private BigDecimal buy;
  12. private String remark;
  13. private BigDecimal price;
  14. public BigDecimal getPrice() {
  15. return price;
  16. }
  17. public void setPrice(BigDecimal price) {
  18. this.price = price;
  19. }
  20. public Integer getUserId() {
  21. return userId;
  22. }
  23. public void setUserId(Integer userId) {
  24. this.userId = userId;
  25. }
  26. public Integer getClassId() {
  27. return classId;
  28. }
  29. public void setClassId(Integer classId) {
  30. this.classId = classId;
  31. }
  32. public Integer getWay() {
  33. return way;
  34. }
  35. public void setWay(Integer way) {
  36. this.way = way;
  37. }
  38. public BigDecimal getPay() {
  39. return pay;
  40. }
  41. public void setPay(BigDecimal pay) {
  42. this.pay = pay;
  43. }
  44. public Integer getChargeMode() {
  45. return chargeMode;
  46. }
  47. public void setChargeMode(Integer chargeMode) {
  48. this.chargeMode = chargeMode;
  49. }
  50. public BigDecimal getBuy() {
  51. return buy;
  52. }
  53. public void setBuy(BigDecimal buy) {
  54. this.buy = buy;
  55. }
  56. public String getRemark() {
  57. return remark;
  58. }
  59. public void setRemark(String remark) {
  60. this.remark = remark;
  61. }
  62. }