feixian_weifajianguan/OpenAuth.App/ServiceApp/MiManager/Request/PickUpAuditReq.cs

41 lines
971 B
C#
Raw Normal View History

2026-02-04 17:00:58 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.MiManager.Request
{
public class PickUpAuditReq
{
/// <summary>
/// 提车信息id
/// </summary>
public string Id { get; set; }
/// <summary>
/// 审核是否通过
/// </summary>
public bool Isagree { get; set; }
/// <summary>
/// 审核意见
/// </summary>
public string ReviewComments { get; set; }
}
2026-03-05 15:23:56 +08:00
public class ReportAuditReq
{
/// <summary>
/// 违法上报信息id
/// </summary>
public string Id { get; set; }
/// <summary>
/// 审核是否通过
/// </summary>
public bool Isagree { get; set; }
/// <summary>
/// 审核意见
/// </summary>
public string ReviewComments { get; set; }
}
2026-02-04 17:00:58 +08:00
}