weaver-hrm-organization/src/com/engine/organization/mapper/extend/ExtendInfoMapper.java

27 lines
701 B
Java
Raw Normal View History

package com.engine.organization.mapper.extend;
import com.engine.organization.entity.extend.po.ExtendInfoPO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
2022-06-14 11:07:48 +08:00
* @description:
* @author:dxfeng
* @createTime: 2022/05/19
* @version: 1.0
*/
public interface ExtendInfoMapper {
/**
* 列表查询
*
* @param extendType
* @param extendGroupId
* @param tableName
* @return
*/
List<ExtendInfoPO> listFields(@Param("extendType") String extendType, @Param("extendGroupId") String extendGroupId, @Param("tableName") String tableName,@Param("operateType")String operateType);
2022-06-14 15:29:22 +08:00
int countFieldsByGroupId(@Param("groupId") Long groupId);
}