package com.bizmatics.persistence.mapper; import com.bizmatics.common.mvc.base.CrudMapper; import com.bizmatics.model.Hookup; import com.bizmatics.model.vo.*; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* Mapper 接口 *

* * @author ya * @since 2022-03-07 */ public interface HookupMapper extends CrudMapper { List getDevidetype(@Param("siteId") Integer siteId); List getVariable(@Param("siteId") Integer siteId,@Param("table") String table); List getVariable171(@Param("siteId") Integer siteId,@Param("table") String table); List getVariable173(@Param("siteId") Integer siteId,@Param("table") String table); List getHookupComponentComplete(@Param("siteId") Integer siteId); }