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
{
///
/// 提车信息id
///
public string Id { get; set; }
///
/// 审核是否通过
///
public bool Isagree { get; set; }
///
/// 审核意见
///
public string ReviewComments { get; set; }
}
public class ReportAuditReq
{
///
/// 违法上报信息id
///
public string Id { get; set; }
///
/// 审核是否通过
///
public bool Isagree { get; set; }
///
/// 审核意见
///
public string ReviewComments { get; set; }
}
}