| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.goafanti.weChat.bo;
- import java.math.BigDecimal;
- public class CheckOrderNoOut {
- private String userName;
- private String contractNo;
- private Integer peopleCount;
- private Integer timesCount;
- private BigDecimal durationCount;
- private BigDecimal durationMax;
- private Integer amountType;
- /**
- * 审核人
- */
- private String adminName;
- /**
- * 发起人
- */
- private String publicReleaseName;
- public String getPublicReleaseName() {
- return publicReleaseName;
- }
- public void setPublicReleaseName(String publicReleaseName) {
- this.publicReleaseName = publicReleaseName;
- }
- public BigDecimal getDurationMax() {
- return durationMax;
- }
- public void setDurationMax(BigDecimal durationMax) {
- this.durationMax = durationMax;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getContractNo() {
- return contractNo;
- }
- public void setContractNo(String contractNo) {
- this.contractNo = contractNo;
- }
- public Integer getPeopleCount() {
- return peopleCount;
- }
- public void setPeopleCount(Integer peopleCount) {
- this.peopleCount = peopleCount;
- }
- public Integer getTimesCount() {
- return timesCount;
- }
- public void setTimesCount(Integer timesCount) {
- this.timesCount = timesCount;
- }
- public BigDecimal getDurationCount() {
- return durationCount;
- }
- public void setDurationCount(BigDecimal durationCount) {
- this.durationCount = durationCount;
- }
- public Integer getAmountType() {
- return amountType;
- }
- public void setAmountType(Integer amountType) {
- this.amountType = amountType;
- }
- public String getAdminName() {
- return adminName;
- }
- public void setAdminName(String adminName) {
- this.adminName = adminName;
- }
- }
|