user.js
752 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
/**
* 用户管理model
* @author: leo <qi.li@yoho.cn>
* @date: 28/06/2017
*/
const mysqlCli = global.yoho.utils.mysqlCli;
const TABLE_USER = 'user';
class UserModel extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 用户列表
* @returns {*}
*/
userList() {
return mysqlCli.query(
`select id, user_phone userPhone, user_name userName, create_time createTime from ${TABLE_USER};`
);
}
/**
* 用户删除
* @returns {*}
*/
deleteUser(userId) {
return mysqlCli.delete(
`delete from ${TABLE_USER} where id = :userId;`, {
userId
}
);
}
}
module.exports = UserModel;