IAjhPlanScheduleConfigService.java
831 字节
package com.skua.modules.ajh.service;
import com.skua.modules.ajh.entity.AjhPlanScheduleConfig;
import com.baomidou.mybatisplus.extension.service.IService;
import com.skua.modules.common.vo.TreeNodeVO;
import com.skua.modules.ajh.vo.AjhPlanScheduleConfigXls;
import java.util.List;
/**
* 经营方案计划表
*/
public interface IAjhPlanScheduleConfigService extends IService<AjhPlanScheduleConfig> {
/***
* 列表查询
* @param departid
* @return
*/
List<TreeNodeVO> queryTreeList(String departid,Integer years);
/**
* 导入excel文件
* @param listAjhPlanScheduleConfigs
*/
void importExcel(List<AjhPlanScheduleConfigXls> listAjhPlanScheduleConfigs,String departId,String years);
List<AjhPlanScheduleConfigXls> exportXlsTemplate(String departId, String years);
}