BranchRule.java 939 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.ym.mec.collectfee.entity;
  2. import java.math.BigDecimal;
  3. /**
  4. * 分部11.11活动实体类
  5. */
  6. public class BranchRule {
  7. private Integer branchId;
  8. private String branchName;
  9. private String branchType;
  10. private BigDecimal branchPrice;
  11. public Integer getBranchId() {
  12. return branchId;
  13. }
  14. public void setBranchId(Integer branchId) {
  15. this.branchId = branchId;
  16. }
  17. public String getBranchName() {
  18. return branchName;
  19. }
  20. public void setBranchName(String branchName) {
  21. this.branchName = branchName;
  22. }
  23. public String getBranchType() {
  24. return branchType;
  25. }
  26. public void setBranchType(String branchType) {
  27. this.branchType = branchType;
  28. }
  29. public BigDecimal getBranchPrice() {
  30. return branchPrice;
  31. }
  32. public void setBranchPrice(BigDecimal branchPrice) {
  33. this.branchPrice = branchPrice;
  34. }
  35. }