| | |
| | | package com.yuanchu.mom.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.mom.dto.PageTestObjectDto; |
| | | import com.yuanchu.mom.pojo.StructureItemParameter; |
| | | import com.yuanchu.mom.mybatis_config.MyBaseMapper; |
| | | import com.yuanchu.mom.pojo.StructureTestObject; |
| | | |
| | | /** |
| | |
| | | * @author makejava |
| | | * @since 2024-02-26 17:36:41 |
| | | */ |
| | | public interface StructureTestObjectMapper extends BaseMapper<StructureTestObject> { |
| | | public interface StructureTestObjectMapper extends MyBaseMapper<StructureTestObject> { |
| | | |
| | | IPage<PageTestObjectDto> selectTestObjectList(Page page, QueryWrapper<PageTestObjectDto> ew); |
| | | } |