29 lines
727 B
C#
29 lines
727 B
C#
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!;
|
||
}
|
||
}
|