AssetDao.java 502 B

12345678910111213141516171819202122
  1. package com.fuzamei.dao;
  2. import com.fuzamei.dto.AssetChangeDto;
  3. import com.fuzamei.entity.Asset;
  4. import com.fuzamei.vo.AssetDetailVo;
  5. import org.springframework.stereotype.Repository;
  6. import java.util.List;
  7. /**
  8. * @file_name: AssetDao
  9. * @Description:
  10. * @author: 刘林杰
  11. * @date: 五月 2018/5/10 9:49
  12. * @version:
  13. */
  14. @Repository
  15. public interface AssetDao {
  16. Asset getAssetDetail(String id);
  17. int updateAssetWithList(List<AssetChangeDto> list);
  18. int updateAsset(Asset asset);
  19. }