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.
weaver-hrm-organization/src/com/engine/organization/mapper/extend/ExtMapper.java

47 lines
838 B
Java

package com.engine.organization.mapper.extend;
import com.engine.organization.entity.extend.param.ExtendInfoParams;
import java.util.Map;
/**
3 years ago
* @description:
* @author:dxfeng
* @createTime: 2022/05/20
* @version: 1.0
*/
public interface ExtMapper {
/**
* id,
*
* @param params
* @return
*/
Map<String, Object> listExt(ExtendInfoParams params);
/**
*
*
* @param params
* @return
*/
int countExtById(ExtendInfoParams params);
/**
*
*
* @param params
* @return
*/
int insertExt(ExtendInfoParams params);
/**
*
*
* @param params
* @return
*/
int updateExt(ExtendInfoParams params);
}