ITbAssetService.java 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package com.ruoyi.asset.service;
  2. import java.util.List;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.ruoyi.asset.domain.TbAsset;
  5. import com.ruoyi.asset.domain.dto.TbAssetDTO;
  6. import com.ruoyi.common.core.domain.AjaxResult;
  7. import org.springframework.transaction.annotation.Transactional;
  8. /**
  9. * 资产信息Service接口
  10. *
  11. * @author 原动力
  12. * @date 2023-03-27
  13. */
  14. @Transactional
  15. public interface ITbAssetService extends IService<TbAsset>
  16. {
  17. /**
  18. * 查询资产信息
  19. *
  20. * @param id 资产信息主键
  21. * @return 资产信息
  22. */
  23. public TbAsset selectTbAssetById(Long id);
  24. /**
  25. * 查询资产信息列表
  26. *
  27. * @param tbAsset 资产信息
  28. * @return 资产信息集合
  29. */
  30. public List<TbAsset> selectTbAssetList(TbAsset tbAsset);
  31. /**
  32. * 新增资产信息
  33. *
  34. * @param tbAsset 资产信息
  35. * @return 结果
  36. */
  37. public int insertTbAsset(TbAsset tbAsset);
  38. /**
  39. * 修改资产信息
  40. *
  41. * @param tbAsset 资产信息
  42. * @return 结果
  43. */
  44. public int updateTbAsset(TbAsset tbAsset);
  45. /**
  46. * 批量删除资产信息
  47. *
  48. * @param ids 需要删除的资产信息主键集合
  49. * @return 结果
  50. */
  51. public int deleteTbAssetByIds(Long[] ids);
  52. /**
  53. * 删除资产信息信息
  54. *
  55. * @param id 资产信息主键
  56. * @return 结果
  57. */
  58. public int deleteTbAssetById(Long id);
  59. /**
  60. * 批量新增
  61. *
  62. * @param tbAssetList 资产信息集合
  63. * @return 结果
  64. */
  65. boolean batchTbAsset(List<TbAsset> tbAssetList);
  66. /**
  67. * 导出数据
  68. *
  69. * @return 资产信息集合
  70. */
  71. List<TbAsset> exportData(TbAsset tbAsset);
  72. /**
  73. * 查询资产信息
  74. *
  75. * @param barCode 资产条形码
  76. * @param numberOrName 资产编号或名称
  77. * @return 资产信息列表
  78. */
  79. List<TbAssetDTO> selectTbAsset(String barCode, String numberOrName);
  80. /**
  81. * 资产信息统计
  82. *
  83. * @return 结果
  84. */
  85. AjaxResult countTbAsset();
  86. }