| | |
| | | // type=1:月 type=2:年 |
| | | private Integer type; |
| | | |
| | | private Integer year; |
| | | private int year; |
| | | |
| | | private Integer month; |
| | | private int month; |
| | | |
| | | public String getLevel() { |
| | | return level; |
| | |
| | | this.type = type; |
| | | } |
| | | |
| | | public Integer getYear() { |
| | | public int getYear() { |
| | | return year; |
| | | } |
| | | |
| | | public void setYear(Integer year) { |
| | | public void setYear(int year) { |
| | | this.year = year; |
| | | } |
| | | |
| | | public Integer getMonth() { |
| | | public int getMonth() { |
| | | return month; |
| | | } |
| | | |
| | | public void setMonth(Integer month) { |
| | | public void setMonth(int month) { |
| | | this.month = month; |
| | | } |
| | | } |