feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Request/DrawBackCaseReq.cs

27 lines
548 B
C#
Raw Normal View History

2026-02-03 16:00:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Request
{
public class DrawBackCaseReq
{
/// <summary>
/// 案件id
/// </summary>
public string id { get; set; }
/// <summary>
/// 退回类型
/// </summary>
public string drawback_type { get; set; }
/// <summary>
/// 退回原因
/// </summary>
public string drawbackReason { get; set; }
}
}