BusZzdzxxMapper.java 837 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.railway.business.catenary.mapper;
  2. import com.railway.business.catenary.domain.BusZzdzxx;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import org.apache.ibatis.annotations.Param;
  5. import org.springframework.stereotype.Repository;
  6. import java.util.List;
  7. /**
  8. * 支柱吊柱信息
  9. * @author wuhonghao
  10. * @date 2021/10/11
  11. */
  12. @Mapper
  13. @Repository
  14. public interface BusZzdzxxMapper {
  15. /**
  16. * @Description: 新增
  17. */
  18. int insert(BusZzdzxx busZzdzxx);
  19. /**
  20. * @Description: 删除
  21. */
  22. int delete(@Param("zzId") String zzId);
  23. /**
  24. * @Description: 更新
  25. */
  26. int update(BusZzdzxx busZzdzxx);
  27. /**
  28. * @Description: 获取单个
  29. */
  30. BusZzdzxx getInfo(@Param("zzId") String zzId);
  31. /**
  32. * @Description: 查询列表
  33. */
  34. List<BusZzdzxx> getList(BusZzdzxx busZzdzxx);
  35. }