IBusFdfxjyqService.java 590 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.railway.business.baseinfo.service;
  2. import com.railway.business.baseinfo.domain.BusFdfxjyq;
  3. import java.util.List;
  4. /**
  5. * 分段分相绝缘器
  6. * @author wuhonghao
  7. * @date 2021/10/13
  8. */
  9. public interface IBusFdfxjyqService{
  10. /**
  11. * 新增
  12. */
  13. int create(BusFdfxjyq busFdfxjyq);
  14. /**
  15. * 删除
  16. */
  17. int delete(String[] ids);
  18. /**
  19. * 更新
  20. */
  21. int update(BusFdfxjyq busFdfxjyq);
  22. /**
  23. * 获取单个
  24. */
  25. BusFdfxjyq getInfo(String id);
  26. /**
  27. * 查询列表
  28. */
  29. List<BusFdfxjyq> getList(BusFdfxjyq busFdfxjyq);
  30. }