| | |
| | | package com.yeshi.fanli.vo.redpack;
|
| | |
|
| | | import java.io.Serializable;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | public class RedPackMonthVO implements Serializable{
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | @Expose
|
| | | private int year;// 年份
|
| | | @Expose
|
| | | private int month;// 月
|
| | | @Expose
|
| | | private String expend;// 支出
|
| | | @Expose
|
| | | private String income;// 收入
|
| | |
|
| | | private String dateFormate;
|
| | |
|
| | | public String getDateFormate() {
|
| | | return dateFormate;
|
| | | }
|
| | |
|
| | | public void setDateFormate(String dateFormate) {
|
| | | this.dateFormate = dateFormate;
|
| | | }
|
| | |
|
| | | public RedPackMonthVO(int year, int month) {
|
| | | this.year = year;
|
| | | this.month = month;
|
| | | }
|
| | |
|
| | | public RedPackMonthVO() {
|
| | |
|
| | | }
|
| | |
|
| | | public int getYear() {
|
| | | return year;
|
| | | }
|
| | |
|
| | | public void setYear(int year) {
|
| | | this.year = year;
|
| | | }
|
| | |
|
| | | public int getMonth() {
|
| | | return month;
|
| | | }
|
| | |
|
| | | public void setMonth(int month) {
|
| | | this.month = month;
|
| | | }
|
| | |
|
| | | public String getExpend() {
|
| | | return expend;
|
| | | }
|
| | |
|
| | | public void setExpend(String expend) {
|
| | | this.expend = expend;
|
| | | }
|
| | |
|
| | | public String getIncome() {
|
| | | return income;
|
| | | }
|
| | |
|
| | | public void setIncome(String income) {
|
| | | this.income = income;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.vo.redpack; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | |
| | | public class RedPackMonthVO implements Serializable{ |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Expose |
| | | private int year;// 年份 |
| | | @Expose |
| | | private int month;// 月 |
| | | @Expose |
| | | private String expend;// 支出 |
| | | @Expose |
| | | private String income;// 收入 |
| | | |
| | | private String dateFormate; |
| | | |
| | | public String getDateFormate() { |
| | | return dateFormate; |
| | | } |
| | | |
| | | public void setDateFormate(String dateFormate) { |
| | | this.dateFormate = dateFormate; |
| | | } |
| | | |
| | | public RedPackMonthVO(int year, int month) { |
| | | this.year = year; |
| | | this.month = month; |
| | | } |
| | | |
| | | public RedPackMonthVO() { |
| | | |
| | | } |
| | | |
| | | public int getYear() { |
| | | return year; |
| | | } |
| | | |
| | | public void setYear(int year) { |
| | | this.year = year; |
| | | } |
| | | |
| | | public int getMonth() { |
| | | return month; |
| | | } |
| | | |
| | | public void setMonth(int month) { |
| | | this.month = month; |
| | | } |
| | | |
| | | public String getExpend() { |
| | | return expend; |
| | | } |
| | | |
| | | public void setExpend(String expend) { |
| | | this.expend = expend; |
| | | } |
| | | |
| | | public String getIncome() { |
| | | return income; |
| | | } |
| | | |
| | | public void setIncome(String income) { |
| | | this.income = income; |
| | | } |
| | | } |