package com.artfess.cqlt.manager; import com.alibaba.fastjson.JSONObject; import com.artfess.base.manager.BaseManager; import com.artfess.cqlt.model.QfFinanceCfBudgetD; import com.artfess.cqlt.model.QfFinanceCfBudgetM; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.util.List; /** * 财务-现金流量预算填报详情表 服务类 * * @company 阿特菲斯信息技术有限公司 * @author min.wu * @since 2023-03-02 */ public interface QfFinanceCfBudgetDManager extends BaseManager { boolean batchUpdate(QfFinanceCfBudgetM t); List detailQuery(List rows, String mainId); void export(HttpServletRequest request, HttpServletResponse response, List rows, String sheetName) throws IOException; }