| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.dto.asset.AssetTypeDTO; |
| | | import com.ruoyi.system.model.AssetType; |
| | | import com.ruoyi.system.query.AssetInventoryListQuery; |
| | | import com.ruoyi.system.query.AssetStatisticsListDetailQuery; |
| | | import com.ruoyi.system.query.AssetStatisticsListQuery; |
| | | import com.ruoyi.system.vo.AssetInventoryVO; |
| | | import com.ruoyi.system.vo.AssetStatisticsDetailVO; |
| | | import com.ruoyi.system.vo.AssetStatisticsVO; |
| | | import com.ruoyi.system.vo.asset.AssetTypeTreeVO; |
| | | |
| | | import java.util.List; |
| | |
| | | */ |
| | | void deleteAssetType(Integer id); |
| | | |
| | | /** |
| | | * 批量删除资产类型 |
| | | * @param ids 资产类型ID列表 |
| | | */ |
| | | void batchDeleteAssetType(List<Integer> ids); |
| | | |
| | | /** |
| | | * 根据资产类型ID获取资产编码前缀 |
| | | * @param assetTypeId 资产类型ID |
| | | * @return 资产编码前缀(一级分类简写+二级分类简写) |
| | | */ |
| | | String getAssetCodePrefix(Integer assetTypeId); |
| | | |
| | | PageInfo<AssetStatisticsVO> pageList(AssetStatisticsListQuery query); |
| | | |
| | | PageInfo<AssetStatisticsDetailVO> pageListDetail(AssetStatisticsListDetailQuery query); |
| | | |
| | | PageInfo<AssetInventoryVO> pageListInventory(AssetInventoryListQuery query); |
| | | |
| | | PageInfo<AssetStatisticsDetailVO> pageListInventoryDetail(AssetStatisticsListDetailQuery query); |
| | | |
| | | } |