package cn.chnmuseum.party.mapper;
import cn.chnmuseum.party.model.TUser;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import cn.chnmuseum.party.model.TBoxOperation;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* <pre>
* 机顶盒运维信息 Mapper 接口
* </pre>
*
* @author Danny Lee
* @since 2021-03-25
*/
public interface TBoxOperationMapper extends BaseMapper<TBoxOperation> {
List<TBoxOperation> getList(@Param("status") String status,@Param("areaId") String areaId);
List<TBoxOperation> selectBoxPage(Page<TBoxOperation> page,@Param("user") TUser user);
List<TBoxOperation> selectPageList(Page<TBoxOperation> page,@Param("tBoxOperation") TBoxOperation tBoxOperation);
/**
* 不分页查询
*
* @param tBoxOperation
* @return
*/
List<TBoxOperation> selectListA(@Param("tBoxOperation") TBoxOperation tBoxOperation);
List<TBoxOperation> selectBoxPage(@Param("user") TUser user);
}
-
jiawei authoredb4b0c3d9