-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserSvc.java
More file actions
51 lines (40 loc) · 972 Bytes
/
Copy pathUserSvc.java
File metadata and controls
51 lines (40 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package deep.sys.svc;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import deep.sys.bean.User;
@Service
@Transactional(readOnly=true)
public class UserSvc implements IUserSvc {
@Autowired
private UserRepo ur;
@Transactional
public User addUser(User u){
return ur.saveAndFlush(u);
}
@Transactional
public List<User> add(List<User> u){
return ur.save(u);
}
@Transactional
public void delUser(Long id){
ur.delete(id);
}
@Transactional
public User modiUser(User u){
return ur.save(u);
}
public User get(Long id){
return ur.findOne(id);
}
public List<User> getAll(){
return ur.findAll();
}
public User getByAccount(String username) {
return ur.getByAccount(username);
}
public boolean isExistUser(String code,String password){
return ur.isExistUser(code, password);
}
}