HookupMapper.java 859 B

1234567891011121314151617181920212223242526272829
  1. package com.bizmatics.persistence.mapper;
  2. import com.bizmatics.common.mvc.base.CrudMapper;
  3. import com.bizmatics.model.Hookup;
  4. import com.bizmatics.model.vo.*;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * Mapper 接口
  10. * </p>
  11. *
  12. * @author ya
  13. * @since 2022-03-07
  14. */
  15. public interface HookupMapper extends CrudMapper<Hookup> {
  16. List<DeviceTypeVo> getDevidetype(@Param("siteId") Integer siteId);
  17. List<RtAnalogDataOneVo> getVariable(@Param("siteId") Integer siteId,@Param("table") String table);
  18. List<RtAnalogDataOneVo> getVariable171(@Param("siteId") Integer siteId,@Param("table") String table);
  19. List<RtAnalogDataOneVo> getVariable173(@Param("siteId") Integer siteId,@Param("table") String table);
  20. List<HookupComponentCompleteTowVo> getHookupComponentComplete(@Param("siteId") Integer siteId);
  21. }