using Admin.NET.Core; using System; using System.ComponentModel.DataAnnotations; namespace Admin.NET.Application { /// /// 家长信息表输入参数 /// public class BusStudentsFramilyInput : BasePageInput { /// /// UUID /// public virtual string Uuid { get; set; } /// /// 家长手机号 /// public virtual string Phone { get; set; } /// /// 昵称 /// public virtual string NickName { get; set; } /// /// 亲属角色 /// public virtual FramilyRoleEnum framilyRole { get; set; } /// /// 数据排序 /// public virtual int Sort { get; set; } /// /// 租户id /// public virtual long TenantId { get; set; } } public class AddBusStudentsFramilyInput : BusStudentsFramilyInput { } public class DeleteBusStudentsFramilyInput : BaseIdInput { } public class UpdateBusStudentsFramilyInput : BusStudentsFramilyInput { /// /// Id主键 /// [Required(ErrorMessage = "Id主键不能为空")] public long Id { get; set; } } public class QueryeBusStudentsFramilyInput : BaseIdInput { } }