src.main.java.com.vincomobile.fw.basic.business.AdChartInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vincofw-basic Show documentation
Show all versions of vincofw-basic Show documentation
Vincomobile framework (Basic components)
package com.vincomobile.fw.basic.business;
import java.util.Date;
public class AdChartInfo {
int days, months;
Date startDay, endDay;
public int getDays() {
return days;
}
public void setDays(int days) {
this.days = days;
}
public int getMonths() {
return months;
}
public void setMonths(int months) {
this.months = months;
}
public Date getStartDay() {
return startDay;
}
public void setStartDay(Date startDay) {
this.startDay = startDay;
}
public Date getEndDay() {
return endDay;
}
public void setEndDay(Date endDay) {
this.endDay = endDay;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy