forked from yuzd/AntMgr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserVm.cs
More file actions
48 lines (36 loc) · 885 Bytes
/
UserVm.cs
File metadata and controls
48 lines (36 loc) · 885 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
using ViewModels.Condition;
namespace ViewModels.Reuqest
{
public class AccountVm : ConditionBase
{
/// <summary>
/// 姓名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// Eid
/// </summary>
public string Eid { get; set; }
/// <summary>
/// 角色TId
/// </summary>
public long RoleTid { get; set; }
}
public class UserVm : ConditionBase
{
/// <summary>
/// 邮箱
/// </summary>
public string Email { get; set; }
/// <summary>
/// 手机号
/// </summary>
public string Phone { get; set; }
}
public class UpdatePwdVm
{
public string Eid { get; set; }
public string OldPwd { get; set; }
public string Pwd { get; set; }
}
}