上饶市公安局wvp平台
zhongrj
2025-01-16 f1d079f9c0b3d384090477ca54e0548373d62b57
src/main/java/com/genersoft/iot/vmp/service/IUserService.java
New file
@@ -0,0 +1,29 @@
package com.genersoft.iot.vmp.service;
import com.genersoft.iot.vmp.storager.dao.dto.User;
import com.github.pagehelper.PageInfo;
import java.util.List;
public interface IUserService {
    User getUser(String username, String password);
    boolean changePassword(int id, String password);
    User getUserByUsername(String username);
    int addUser(User user);
    int deleteUser(int id);
    List<User> getAllUsers();
    int updateUsers(User user);
    boolean checkPushAuthority(String callId, String sign);
    PageInfo<User> getUsers(int page, int count);
    int changePushKey(int id, String pushKey);
}