namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
///
/// App「我的资料」展示数据(My Profile)
///
public class UsAppMyProfileOutputDto
{
/// 全名(Name,无则 Nick,再无则 UserName)
public string FullName { get; set; } = string.Empty;
/// 邮箱
public string Email { get; set; } = "无";
/// 电话展示(如 +1 (555) 123-4567);无则「无」
public string Phone { get; set; } = "无";
/// 员工号/登录名(当前使用 User.UserName,可与业务约定为工号)
public string EmployeeId { get; set; } = string.Empty;
/// 角色展示名(多角色英文逗号拼接,按角色 OrderNum)
public string RoleDisplay { get; set; } = "无";
/// 主角色编码(第一个角色 RoleCode,供前端样式)
public string? PrimaryRoleCode { get; set; }
}