package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.BisInspFundRgstr; import cn.com.goldenwater.dcproj.param.BisInspFundRgstrParam; import cn.com.goldenwater.dcproj.param.TypeParam; import com.github.pagehelper.PageInfo; import java.util.Map; /** * @author lisen * @date 2021-6-19 */ public interface BisInspFundRgstrService extends CrudService { // ------------------------- 自定方法 ------------------------- BisInspFundRgstr save(BisInspFundRgstr bisInspFundRgstr); // ------------------------- 自定方法 ------------------------- PageInfo findFundPageInfo(TypeParam typeParam); void updateState(Map map); }