package com.partynetwork.iparty.info; public class ApplyInfo { // 申请Id private int applyId; // 申请编号 private int applyNumber; /** * @return applyId */ public int getApplyId() { return applyId; } /** * @param applyId * 要设置的 applyId */ public void setApplyId(int applyId) { this.applyId = applyId; } /** * @return applyNumber */ public int getApplyNumber() { return applyNumber; } /** * @param applyNumber * 要设置的 applyNumber */ public void setApplyNumber(int applyNumber) { this.applyNumber = applyNumber; } }