package com.gkhy.safePlatform.specialWork.repository;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.safePlatform.specialWork.entity.WorkBlindPlatePluggingInfo;
|
import com.gkhy.safePlatform.specialWork.model.query.WorkBlindPlatePluggingQuery;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
@Repository
|
public interface WorkBlindPlatePluggingInfoRepository extends BaseMapper<WorkBlindPlatePluggingInfo> {
|
|
/**
|
* 批量删除
|
* @param idList
|
* @param status
|
* @return
|
*/
|
int updateStatutsByIds(@Param("idList") List<Long> idList, @Param("status")byte status);
|
|
/**
|
* 条件查询
|
* @param query
|
* @return
|
*/
|
List<WorkBlindPlatePluggingInfo> listByConditions(@Param("query") WorkBlindPlatePluggingQuery query);
|
}
|