package com.codeest.geeknews.model.bean; /** * Created by codeest on 16/8/13. */ public class CalendarBean { public CalendarBean(int year, int month, int day) { this.year = year; this.month = month; this.day = day; } private int year; private int month; private int day; public int getDay() { return day; } public int getMonth() { return month; } public int getYear() { return year; } public void setDay(int day) { this.day = day; } public void setMonth(int month) { this.month = month; } public void setYear(int year) { this.year = year; } }