This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System.ComponentModel.DataAnnotations;
namespace Entity.Api.Req;
/// <summary>
///
/// </summary>
public class OperateModelReq
{
/// 操作人员名称
[Required]
public string? Operator { get; set; }
/// 操作原因
public string? Reason { get; set; }
/// 操作类型 : 1人工确认成功;2人工确认失败
public int Type { get; set; }
}