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

29 lines
727 B
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 SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.FeedBack
{
/// <summary>
/// 处理
/// </summary>
public class BatchEditStatusDto
{
/// <summary>
/// 备 注:处理状态默认0未确认、1已采纳、2不采纳、3重复建议
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "status")]
public FeedBackInfoStatusEnum Status { get; set; }
/// <summary>
/// 处理的数据Id
/// </summary>
public List<long> Ids { get; set; } = null!;
}
}