| 123456789101112131415161718192021 |
- package com.xjrsoft.module.asset.mapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.asset.dto.WfAssetManagePageDto;
- import com.xjrsoft.module.asset.entity.WfAssetManage;
- import com.xjrsoft.module.asset.vo.WfAssetManagePageVo;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 资产管理
- * @Author dzx
- * @Date: 2024-03-28
- * @Version 1.0
- */
- @Mapper
- public interface WfAssetManageMapper extends MPJBaseMapper<WfAssetManage> {
- IPage<WfAssetManagePageVo> getPage(IPage<WfAssetManagePageDto> page, WfAssetManagePageDto dto);
- }
|