using Admin.NET.Core; using System; using System.ComponentModel.DataAnnotations; namespace Admin.NET.Application { /// /// 学生量表结果表输入参数 /// public class BusStudentScaleResultsInput : BasePageInput { /// /// 学生Id /// public virtual long SysOauthUserId { get; set; } /// /// 量表名称 /// public virtual long ScaleId { get; set; } /// /// 测试结果 /// public virtual string Result { get; set; } /// /// 租户id /// public virtual long TenantId { get; set; } } public class AddBusStudentScaleResultsInput : BusStudentScaleResultsInput { } public class DeleteBusStudentScaleResultsInput : BaseIdInput { } public class UpdateBusStudentScaleResultsInput : BusStudentScaleResultsInput { /// /// Id主键 /// [Required(ErrorMessage = "Id主键不能为空")] public long Id { get; set; } } public class QueryeBusStudentScaleResultsInput : BaseIdInput { } }