using SqlSugar; using System; using System.Linq; using System.Text; namespace OpenAuth.Repository.Domain { /// ///违法上报信息表 /// [SugarTable("mi_violation_report")] public partial class MiViolationReport { public MiViolationReport(){ } /// /// Desc:违法上报ID /// Default: /// Nullable:False /// public string Id {get;set;} /// /// Desc:标题 /// Default: /// Nullable:False /// public string Title {get;set;} /// /// Desc:状态 /// Default:'待处理'::character varying /// Nullable:True /// public string Status {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;} } }