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.
30 lines
786 B
Java
30 lines
786 B
Java
package com.engine.organization.mapper.personnelcard;
|
|
|
|
import com.engine.organization.entity.detach.po.ManagerDetachPO;
|
|
import com.engine.organization.entity.personnelcard.po.CardAccessPO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.Collection;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description:
|
|
* @Date 2022/10/24
|
|
* @Version V1.0
|
|
**/
|
|
public interface CardAccessMapper {
|
|
|
|
int insertIgnoreNull(CardAccessPO cardAccessPO);
|
|
|
|
int saveCardAccess(@Param("dataList") List<HashMap<String, Object>> dataList);
|
|
|
|
int deleteByIds(@Param("ids") Collection<Long> ids);
|
|
|
|
ManagerDetachPO selectById(@Param("id") Integer id);
|
|
|
|
int updateTabName(@Param("name")String name,@Param("id") Integer id);
|
|
}
|