dbc9750f
李曜臣
成员模块实现
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
namespace FoodLabeling.Application.Contracts.Dtos.TeamMember;
public class TeamMemberUpdateInputVo
{
public string FullName { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
/// <summary>
/// 为空表示不改密码
/// </summary>
public string? Password { get; set; }
public string? Email { get; set; }
public long? Phone { get; set; }
public Guid? RoleId { get; set; }
public List<string> LocationIds { get; set; } = new();
public bool State { get; set; } = true;
}
|