using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.Request { public class MiViolationReportRequest { /// /// Desc:标题 /// Default: /// Nullable:False /// public string Title { get; set; } /// /// Desc:当事人姓名 /// Default: /// Nullable:True /// public string PartyName { get; set; } /// /// Desc:当事人电话 /// Default: /// Nullable:True /// public string PartyPhone { get; set; } /// /// Desc:违法类型 /// Default: /// Nullable:True /// public string ViolationType { get; set; } /// /// Desc:问题描述 /// Default: /// Nullable:True /// public string ProblemDescription { get; set; } /// /// Desc:处理意见 /// Default: /// Nullable:True /// public string HandlingOpinion { get; set; } /// /// Desc:停车场 id /// Default: /// Nullable:True /// public string ParkingId { get; set; } /// /// Desc:经度 /// Default: /// Nullable:True /// public decimal? Lng { get; set; } /// /// Desc:纬度 /// Default: /// Nullable:True /// public decimal? Lat { get; set; } /// /// Desc:处理单位 /// Default: /// Nullable:True /// public string HandlingUnit { get; set; } /// /// Desc:处理人 /// Default: /// Nullable:True /// public string Handler { get; set; } /// /// Desc:处理时间 /// Default: /// Nullable:True /// public DateTime? HandlingTime { get; set; } /// /// Desc:上报时间 /// Default:DateTime.Now /// Nullable:True /// public DateTime? ReportTime { get; set; } /// /// Desc:上报人 /// Default: /// Nullable:True /// public string Reporter { get; set; } /// /// Desc:盗采点id /// Default: /// Nullable:True /// public string MinePointId { get; set; } /// /// 上报单位 /// public string ReportUnit { get; set; } /// /// 现场图片 /// public List SencePhotos { get; set; } /// /// 车辆信息 /// public List Vehicles { get; set; } } }