mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-17 11:07:49 +08:00
25 lines
487 B
Java
25 lines
487 B
Java
package com.genersoft.iot.vmp.service;
|
|
|
|
import com.genersoft.iot.vmp.storager.dao.dto.User;
|
|
|
|
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);
|
|
}
|