/** * */ package cn.com.lzt.callable; import java.util.HashMap; import org.jeecgframework.core.common.service.impl.CommonServiceImpl; /** * @author xzx * * 2019年9月1日 * */ public abstract class YearmonthlyDataloadCallable extends AbstractDataLoadCallable { protected String yearmonth; /** * @param commonService */ public YearmonthlyDataloadCallable(CommonServiceImpl commonService,String yearmonth) { super(commonService); this.yearmonth = yearmonth; } public String getYearmonth() { return yearmonth; } public void setYearmonth(String yearmonth) { this.yearmonth = yearmonth; } abstract public HashMap> loadData() throws Exception; }