公告板
版本库
filestore
活动
搜索
登录
main
/
wvp-pro
搭配zgyw,实现gb28181
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
使用数据库用户表代替配置文件
panlinlin
2021-04-13
123ce171d2b8ca97d9f4011a33ce4e5e8d1cc339
[wvp-pro.git]
/
src
/
main
/
java
/
com
/
genersoft
/
iot
/
vmp
/
service
/
IUserService.java
1
2
3
4
5
6
7
8
9
10
11
12
package com.genersoft.iot.vmp.service;
import com.genersoft.iot.vmp.storager.dao.dto.User;
public interface IUserService {
User getUser(String username, String password);
boolean changePassword(int id, String password);
}