qa-prevention-gwj/src/main/java/com/zcloud/mapper/datasource/gatemachine/GateMachineInfoMapper.java

23 lines
449 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.zcloud.mapper.datasource.gatemachine;
import com.zcloud.entity.PageData;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* 说明TODO
* 作者wangxuan
* 官网www.zcloudchina.com
*/
@Mapper
public interface GateMachineInfoMapper {
void BatchinsertInfo(List<PageData> listPd);
List<PageData> findAll();
List<PageData> findByIds(PageData pd);
PageData perpleCount(PageData pd);
}