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.
29 lines
731 B
Java
29 lines
731 B
Java
package com.engine.organization.mapper.detach;
|
|
|
|
import com.engine.organization.entity.detach.po.ManagerDetachPO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description:
|
|
* @Date 2022/10/24
|
|
* @Version V1.0
|
|
**/
|
|
public interface ManagerDetachMapper {
|
|
|
|
int insertIgnoreNull(ManagerDetachPO managerDetachPO);
|
|
|
|
int updateDetach(ManagerDetachPO managerDetachPO);
|
|
|
|
int deleteByIds(@Param("ids") Collection<Long> ids);
|
|
|
|
List<ManagerDetachPO> selectByIds(@Param("ids")Collection<Long> ids);
|
|
|
|
ManagerDetachPO getDetachById(@Param("id") Integer id);
|
|
|
|
List<ManagerDetachPO> getDetachListById(@Param("ecManager") Integer ecManager);
|
|
}
|