SmartIdentityService.java 714 B

12345678910111213141516171819202122232425262728
  1. package com.template.services;
  2. import com.template.model.pojo.SmartIdentity;
  3. import com.template.model.pojo.SmartIdentity;
  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 SmartIdentityService extends IService<SmartIdentity> {
  15. int insertSmartIdentity(SmartIdentity rns);
  16. int updateSmartIdentity(SmartIdentity rns);
  17. SmartIdentity queryIdentityByName(String name);
  18. PageUtils<SmartIdentity> queryPageSmartIdentitys(int currentPage, int pageCount, String name);
  19. int deleteSmartIdentityById(int id);
  20. SmartIdentity getSmartById(int id);
  21. }