2022-12-13 15:57:21 +08:00
|
|
|
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);
|
|
|
|
|
|
2024-08-20 15:23:50 +08:00
|
|
|
List<ManagerDetachPO> getDetachListById(@Param("ecManager") Integer ecManager,@Param("managerType") Integer managerType);
|
2023-08-17 17:17:59 +08:00
|
|
|
|
2024-08-19 17:16:24 +08:00
|
|
|
List<ManagerDetachPO> selectDetachListByManager(@Param("ids") Collection<Integer> ids);
|
|
|
|
|
|
2023-08-17 17:17:59 +08:00
|
|
|
ManagerDetachPO selectManagerDetachByUid(@Param("uid") Integer uId);
|
2022-12-13 15:57:21 +08:00
|
|
|
}
|