| 1234567891011121314151617181920212223242526 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspAccunt;
- import cn.com.goldenwater.dcproj.param.BisInspAccuntParam;
- import com.github.pagehelper.PageInfo;
- import org.springframework.web.multipart.MultipartFile;
- import javax.servlet.http.HttpServletResponse;
- import java.util.List;
- /**
- * @author lhc
- * @date 2022-3-17
- */
- public interface BisInspAccuntService extends CrudService<BisInspAccunt, BisInspAccuntParam> {
- void batch(List<BisInspAccunt> bisInspAccunt);
- void export(HttpServletResponse response, BisInspAccuntParam bisInspAccuntParam);
- List<String> importFile(MultipartFile file, BisInspAccunt account) throws Exception;
- // ------------------------- 自定方法 -------------------------
- }
|