package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.BisInspMeetRecode; import cn.com.goldenwater.dcproj.param.BisInspMeetRecodeParam; import com.github.pagehelper.PageInfo; import java.io.IOException; import java.util.List; /** * @author lhc * @date 2019-5-27 */ public interface BisInspMeetRecodeService extends CrudService { // ------------------------- 自定方法 ------------------------- int add(BisInspMeetRecode bisInspMeetRecode) throws IOException; int edit(BisInspMeetRecode bisInspMeetRecode) throws IOException; int del(String id) throws IOException; int sendSms(String id) throws Exception; PageInfo getRecodeInfo(BisInspMeetRecodeParam bisInspMeetRecodeParam) throws IOException; }