| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /**
- *
- */
- 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<String, HashMap<String, Object>> loadData() throws Exception;
- }
|