| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.eam.entity.EamThirdMaintenanceChange; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 三保变更 |
| | | * @Author: jeecg-boot |
| | |
| | | public interface EamThirdMaintenanceChangeMapper extends BaseMapper<EamThirdMaintenanceChange> { |
| | | |
| | | IPage<EamThirdMaintenanceChange> queryPageList(Page<EamThirdMaintenanceChange> page, @Param(Constants.WRAPPER) QueryWrapper<EamThirdMaintenanceChange> queryWrapper); |
| | | |
| | | List<EamThirdMaintenanceChange> queryList(@Param(Constants.WRAPPER) QueryWrapper<EamThirdMaintenanceChange> queryWrapper); |
| | | } |