lawrencehj
2021-06-23 2c0240e16f837aef6ce94aa48d862cc48e2c0cf0
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);
 
    User getUserByUsername(String username);
}