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

41 lines
971 B
C#

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; }
}
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; }
}
}