SmartDepartmentService.java 685 B

1234567891011121314151617181920212223242526
  1. package com.template.services;
  2. import com.template.model.pojo.SmartDepartment;
  3. import com.template.model.pojo.SmartDepartment;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import com.template.model.result.PageUtils;
  6. /**
  7. * <p>
  8. * 服务类
  9. * </p>
  10. *
  11. * @author ceshi
  12. * @since 2023-12-04
  13. */
  14. public interface SmartDepartmentService extends IService<SmartDepartment> {
  15. int insertSmartDepartment(SmartDepartment rns);
  16. int updateSmartDepartment(SmartDepartment rns);
  17. PageUtils<SmartDepartment> queryPageSmartDepartments(int currentPage, int pageCount, String name);
  18. int deleteSmartDepartmentById(int id);
  19. SmartDepartment getSmartById(int id);
  20. }