YearmonthlyDataloadCallable.java 718 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. *
  3. */
  4. package cn.com.lzt.callable;
  5. import java.util.HashMap;
  6. import org.jeecgframework.core.common.service.impl.CommonServiceImpl;
  7. /**
  8. * @author xzx
  9. *
  10. * 2019年9月1日
  11. *
  12. */
  13. public abstract class YearmonthlyDataloadCallable extends AbstractDataLoadCallable {
  14. protected String yearmonth;
  15. /**
  16. * @param commonService
  17. */
  18. public YearmonthlyDataloadCallable(CommonServiceImpl commonService,String yearmonth) {
  19. super(commonService);
  20. this.yearmonth = yearmonth;
  21. }
  22. public String getYearmonth() {
  23. return yearmonth;
  24. }
  25. public void setYearmonth(String yearmonth) {
  26. this.yearmonth = yearmonth;
  27. }
  28. abstract public HashMap<String, HashMap<String, Object>> loadData() throws Exception;
  29. }