package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.AttPrdCstrProjBase; import cn.com.goldenwater.dcproj.param.AttPrdCstrProjBaseParam; import com.github.pagehelper.PageInfo; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @author lune * @date 2019-12-12 */ public interface AttPrdCstrProjBaseService extends CrudService { List findListReg(AttPrdCstrProjBaseParam attPrdCstrProjBaseParam); // ------------------------- 自定方法 ------------------------- AttPrdCstrProjBase getObjId(@Param("objId") String objId); }