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

25 lines
570 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; }
}
}