| | |
| | | |
| | | import com.oying.domain.BucketStorage; |
| | | import com.oying.domain.dto.BucketStorageQueryCriteria; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | |
| | | /** |
| | | * @author lixin |
| | | * @date 2025-06-03 |
| | | **/ |
| | | * @author lixin |
| | | * @date 2025-06-03 |
| | | **/ |
| | | @Mapper |
| | | public interface BucketStorageMapper extends BaseMapper<BucketStorage> { |
| | | |
| | | IPage<BucketStorage> findAll(@Param("criteria") BucketStorageQueryCriteria criteria, Page<Object> page); |
| | | |
| | | List<BucketStorage> findAll(@Param("criteria") BucketStorageQueryCriteria criteria); |
| | | |
| | | BucketStorage findByPath(@Param("path") String path); |
| | | } |