26 lines
625 B
C#
26 lines
625 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto.Lecturer
|
|
{
|
|
public class LecturerSearchDto : SearchPageBase
|
|
{
|
|
/// <summary>
|
|
/// 发布状态
|
|
/// </summary>
|
|
public int? Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审核状态
|
|
/// </summary>
|
|
public int? Checkstatus { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
public string? DeptId { get; set; }
|
|
public string? Reason { get; set; }
|
|
public string? Eid { get; set; }
|
|
}
|
|
} |