You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
549 B

using System.ComponentModel.DataAnnotations;
namespace Entity.Api.Req;
/// <summary>
///
/// </summary>
public class OperateModelReq
{
/// <summary>
/// 操作人员名称
/// </summary>
[Required]
public string? Operator { get; set; }
/// <summary>
/// 操作原因
/// </summary>
[Required]
public string? Reason { get; set; }
/// <summary>
/// 操作类型 1人工确认成功;2人工确认失败
/// </summary>
[Required]
public int Type { get; set; }
}