123456789101112131415161718192021222324252627282930313233343536 |
- package com.ym.mec.collectfee.entity;
- import java.math.BigDecimal;
- public class ApplyInfoPage extends ApplyInfo {
- private BigDecimal amount;
- private String subName;
- private String schoolName;
- public String getSchoolName() {
- return schoolName;
- }
- public void setSchoolName(String schoolName) {
- this.schoolName = schoolName;
- }
- public BigDecimal getAmount() {
- return amount;
- }
- public void setAmount(BigDecimal amount) {
- this.amount = amount;
- }
- public String getSubName() {
- return subName;
- }
- public void setSubName(String subName) {
- this.subName = subName;
- }
- }
|