2022-10-24 19:25:55 +08:00
|
|
|
package com.engine.organization.mapper.detach;
|
|
|
|
|
|
2022-10-25 17:48:22 +08:00
|
|
|
import com.engine.organization.entity.detach.po.ManagerDetachPO;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2022-10-24 19:25:55 +08:00
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description:
|
|
|
|
|
* @Date 2022/10/24
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface ManagerDetachMapper {
|
|
|
|
|
|
2022-10-25 17:48:22 +08:00
|
|
|
int insertIgnoreNull(ManagerDetachPO managerDetachPO);
|
|
|
|
|
|
|
|
|
|
int updateDetach(ManagerDetachPO managerDetachPO);
|
|
|
|
|
|
|
|
|
|
int deleteByIds(@Param("ids") Collection<Long> ids);
|
|
|
|
|
|
|
|
|
|
List<ManagerDetachPO> selectByIds(@Param("ids")Collection<Long> ids);
|
2022-10-26 17:11:23 +08:00
|
|
|
|
|
|
|
|
ManagerDetachPO getDetachById(@Param("id") Integer id);
|
2022-10-28 17:43:46 +08:00
|
|
|
|
|
|
|
|
List<ManagerDetachPO> getDetachListById(@Param("ecManager") Integer ecManager);
|
2022-10-24 19:25:55 +08:00
|
|
|
}
|