| 12345678910111213141516171819202122 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.dto.ExcelInspPblmDto;
- import cn.com.goldenwater.dcproj.model.ImpPblmInfo;
- import cn.com.goldenwater.dcproj.param.ImpPblmInfoParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-7-23
- */
- public interface ImpPblmInfoService extends CrudService<ImpPblmInfo, ImpPblmInfoParam> {
- // ------------------------- 自定方法 -------------------------
- String insertList(List<ImpPblmInfo> list, String mnth);
- String handleRsData(String mnth, String orgId);
- }
|