SheetService.java
598 Bytes
package com.bsth.service.report;
import java.util.List;
import java.util.Map;
import com.bsth.entity.sheet.Sheet;
import com.bsth.service.BaseService;
public interface SheetService extends BaseService<Sheet, Integer>{
public List<Map<String, Object>> bcPunctual(Map<String, Object> map);
public String saveSheetList(String date) throws Exception;
public List<Map<String, Object>> countList(Map<String, Object> map);
public List<Map<String, Object>> listSheet(Map<String, Object> map);
public List<Sheet> sheetList(Integer id);
public List<Sheet> exportList(Integer id);
}