package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.BisInspCdepRgstr; import cn.com.goldenwater.dcproj.param.BisInspCdepRgstrParam; import com.github.pagehelper.Page; import com.github.pagehelper.PageInfo; import java.util.List; import java.util.Map; /** * @author lhc * @date 2020-11-19 */ public interface BisInspCdepRgstrService extends CrudService { // ------------------------- 自定方法 ------------------------- BisInspCdepRgstr save(BisInspCdepRgstr bisInspCdepRgstr); PageInfo findCdepPageInfo(BisInspCdepRgstrParam bisInspCdepRgstrParam); void updateState(Map map); }