| | |
| | | package com.panzhihua.service_property.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.property.CommonPage; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import com.panzhihua.service_property.entity.ComPropertyEquipment; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * (ComPropertyEquipment)表数据库访问层 |
| | |
| | | */ |
| | | @Mapper |
| | | public interface ComPropertyEquipmentDao extends BaseMapper<ComPropertyEquipment> { |
| | | |
| | | IPage<ComPropertyEquipment> pageList(Page page, @Param("commonPage") CommonPage commonPage); |
| | | } |