BudgetService.java
773 Bytes
package com.bsth.service.forms;
import java.io.File;
import java.util.List;
import java.util.Map;
import com.bsth.entity.forms.Budget;
import com.bsth.service.BaseService;
public interface BudgetService extends BaseService<Budget, Integer> {
public String importExcel(File file);
public Map<String, Object> deleteIds(Map<String, Object> map) throws Exception;
public Map<String, Object> updateRevenue(String date) throws Exception;
public List<Map<String, Object>> budgetMileage(String year, String type);
public List<Map<String, Object>> budgetPerson(String year, String type);
public List<Map<String, Object>> budgetAmounts(String year, String type);
public List<Map<String, Object>> budgetSum(String year, String type);
}