You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
489 B
Java
23 lines
489 B
Java
3 years ago
|
package com.engine.organization.mapper.comp;
|
||
|
|
||
|
import com.engine.organization.common.BaseQueryParam;
|
||
|
import com.engine.organization.entity.comp.po.CompPO;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @description: TODO
|
||
|
* @author:dxfeng
|
||
|
* @createTime: 2022/05/16
|
||
|
* @version: 1.0
|
||
|
*/
|
||
|
public interface CompMapper {
|
||
|
/**
|
||
|
* 列表查询
|
||
|
* @param queryParam
|
||
|
* @return
|
||
|
*/
|
||
|
List<CompPO> list(@Param("param") BaseQueryParam queryParam);
|
||
|
}
|