| 1234567891011121314151617181920212223242526 |
- package com.template.services;
- import com.template.model.pojo.SmartUser;
- import com.template.model.pojo.SmartUser;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.template.model.result.PageUtils;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author ceshi
- * @since 2023-12-04
- */
- public interface SmartUserService extends IService<SmartUser> {
- int insertSmartUser(SmartUser rns);
- int updateSmartUser(SmartUser rns);
- PageUtils<SmartUser> queryPageSmartUsers(int currentPage, int pageCount, String name);
- int deleteSmartUserById(int id);
- SmartUser getSmartById(int id);
- }
|