tuiwucarrer/Admin.NET/Admin.NET.Application/Service/CePing/BusStudentScaleResults/Dto/BusStudentScaleResultsInput.cs

57 lines
1.3 KiB
C#

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