using LearningOfficer.OA.Common.Enums;
using LearningOfficer.OA.Common.Request;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.FeedBack
{
///
/// 管理端分页dto
///
public class AdminQueryPageDto : PageRequest
{
///
/// 备 注:建议类型 传0或null,表示所有
/// 默认值:
///
public long? FeedbackType { get; set; }
///
/// 备 注:状态 默认null,表示所有
/// 默认值:
///
public FeedBackInfoStatusEnum? Status { get; set; }
///
/// 开始时间 默认null, 表示所有
///
public DateTime? BeginTime { get; set; }
///
/// 结束时间 默认null,表示所有
///
public DateTime? EndTime { get; set; }
///
/// 云校Id 默认null,表示所有
///
public long? CloudSchoolId { get; set; }
///
/// 学校Id 默认null,表示所有
///
public long? SchoolId { get; set; }
///
/// 提议人
///
public string? AddUserName { get; set; }
}
}