Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/FeedBack/AdminQueryPageDto.cs

50 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
/// <summary>
/// 管理端分页dto
/// </summary>
public class AdminQueryPageDto : PageRequest
{
/// <summary>
/// 备 注:建议类型 传0或null表示所有
/// 默认值:
///</summary>
public long? FeedbackType { get; set; }
/// <summary>
/// 备 注:状态 默认null表示所有
/// 默认值:
///</summary>
public FeedBackInfoStatusEnum? Status { get; set; }
/// <summary>
/// 开始时间 默认null 表示所有
/// </summary>
public DateTime? BeginTime { get; set; }
/// <summary>
/// 结束时间 默认null表示所有
/// </summary>
public DateTime? EndTime { get; set; }
/// <summary>
/// 云校Id 默认null表示所有
/// </summary>
public long? CloudSchoolId { get; set; }
/// <summary>
/// 学校Id 默认null表示所有
/// </summary>
public long? SchoolId { get; set; }
/// <summary>
/// 提议人
/// </summary>
public string? AddUserName { get; set; }
}
}