23 lines
449 B
Java
23 lines
449 B
Java
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);
|
||
}
|