using System; namespace Admin.NET.Application { /// /// 家长信息表输出参数 /// public class BusStudentsFramilyOutput { /// /// UUID /// public string Uuid { get; set; } /// /// 家长手机号 /// public string Phone { get; set; } /// /// 昵称 /// public string NickName { get; set; } /// /// 亲属角色 /// public FramilyRoleEnum framilyRole { get; set; } /// /// 数据排序 /// public int Sort { get; set; } /// /// 租户id /// public long TenantId { get; set; } /// /// Id主键 /// public long Id { get; set; } /// /// /// public DateTimeOffset? CreatedTime { get; set; } } }