UnMonthInfo.java
383 字节
package com.espeed.vo;
/*
* 退订实体
*/
public class UnMonthInfo {
private String month;//所属月分
private int monthnum;//月量
public String getMonth() {
return month;
}
public void setMonth(String month) {
this.month = month;
}
public int getMonthnum() {
return monthnum;
}
public void setMonthnum(int monthnum) {
this.monthnum = monthnum;
}
}