| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.ruoyi.system.model.TItemType; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.model.TItemType; |
| | | import com.ruoyi.system.query.TItemTypeQuery; |
| | | import com.ruoyi.system.vo.TItemTypeVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TItemTypeService extends IService<TItemType> { |
| | | |
| | | /** |
| | | * 判断分类是否存在 |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | boolean isExit(TItemType dto); |
| | | |
| | | /** |
| | | * 获取维修物品分类分页列表 |
| | | * @param query |
| | | * @return |
| | | */ |
| | | PageInfo<TItemType> pageList(TItemTypeQuery query); |
| | | |
| | | List<TItemTypeVO> getItemList(String itemName); |
| | | } |