24 lines
500 B
Java
24 lines
500 B
Java
|
|
package com.engine.organization.mapper.comp;
|
||
|
|
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: TODO
|
||
|
|
* @author:dxfeng
|
||
|
|
* @createTime: 2022/05/20
|
||
|
|
* @version: 1.0
|
||
|
|
*/
|
||
|
|
public interface CompExtMapper {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 根据主表id,查询主表拓展表数据
|
||
|
|
*
|
||
|
|
* @param tableName
|
||
|
|
* @param id
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
Map<String, Object> listCompExt(@Param("tableName") String tableName, @Param("fields") String fields, @Param("id") long id);
|
||
|
|
}
|