TbAssetAllocationDTOMapper.java 411 B

123456789101112131415
  1. package com.ruoyi.change.mapper;
  2. import com.ruoyi.change.domain.dto.TbAssetAllocationDTO;
  3. import java.util.List;
  4. public interface TbAssetAllocationDTOMapper {
  5. /**
  6. * 查询资产调拨列表
  7. *
  8. * @param tbAssetAllocationDTO 资产调拨
  9. * @return 资产调拨集合
  10. */
  11. public List<TbAssetAllocationDTO> selectTbAssetAllocationList(TbAssetAllocationDTO tbAssetAllocationDTO);
  12. }