From 0d9e916f7e1e87b264eb40a5d195fd9e7098a088 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=86=89=E6=88=90=E6=A5=BC?= <799806631@qq.com>
Date: Wed, 4 Feb 2026 10:18:56 +0800
Subject: [PATCH] 1
---
.../Domain/MiViolationReport.cs | 213 +++++++++---------
1 file changed, 109 insertions(+), 104 deletions(-)
diff --git a/OpenAuth.Repository/Domain/MiViolationReport.cs b/OpenAuth.Repository/Domain/MiViolationReport.cs
index 8c31b17..62b74ec 100644
--- a/OpenAuth.Repository/Domain/MiViolationReport.cs
+++ b/OpenAuth.Repository/Domain/MiViolationReport.cs
@@ -11,128 +11,133 @@ namespace OpenAuth.Repository.Domain
[SugarTable("mi_violation_report")]
public partial class MiViolationReport
{
- public MiViolationReport(){
+ public MiViolationReport()
+ {
- }
- ///
- /// Desc:违法上报ID
- /// Default:
- /// Nullable:False
- ///
- public string Id {get;set;}
+ }
+ ///
+ /// Desc:违法上报ID
+ /// Default:
+ /// Nullable:False
+ ///
+ public string Id { get; set; }
- ///
- /// Desc:标题
- /// Default:
- /// Nullable:False
- ///
- public string Title {get;set;}
+ ///
+ /// Desc:标题
+ /// Default:
+ /// Nullable:False
+ ///
+ public string Title { get; set; }
- ///
- /// Desc:状态
- /// Default:'待处理'::character varying
- /// Nullable:True
- ///
- public string Status {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 PartyName { get; set; }
- ///
- /// Desc:当事人电话
- /// Default:
- /// Nullable:True
- ///
- public string PartyPhone {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 ViolationType { get; set; }
- ///
- /// Desc:问题描述
- /// Default:
- /// Nullable:True
- ///
- public string ProblemDescription {get;set;}
+ ///
+ /// Desc:问题描述
+ /// Default:
+ /// Nullable:True
+ ///
+ public string ProblemDescription { get; set; }
- ///
- /// Desc:处理意见
- /// Default:
- /// Nullable:True
- ///
- public string HandlingOpinion {get;set;}
+ ///
+ /// Desc:处理意见
+ /// Default:
+ /// Nullable:True
+ ///
+ public string HandlingOpinion { get; set; }
- ///
- /// Desc:停车场 id
- /// Default:
- /// Nullable:True
- ///
- public string ParkingId {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? Lng { get; set; }
- ///
- /// Desc:纬度
- /// Default:
- /// Nullable:True
- ///
- public decimal? Lat {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 HandlingUnit { get; set; }
- ///
- /// Desc:处理人
- /// Default:
- /// Nullable:True
- ///
- public string Handler {get;set;}
+ ///
+ /// Desc:处理人
+ /// Default:
+ /// Nullable:True
+ ///
+ public string Handler { get; set; }
- ///
- /// Desc:处理时间
- /// Default:
- /// Nullable:True
- ///
- public DateTime? HandlingTime {get;set;}
+ ///
+ /// Desc:处理时间
+ /// Default:
+ /// Nullable:True
+ ///
+ public DateTime? HandlingTime { get; set; }
- ///
- /// Desc:上报时间
- /// Default:DateTime.Now
- /// Nullable:True
- ///
- public DateTime? ReportTime {get;set;}
+ ///
+ /// Desc:上报时间
+ /// Default:DateTime.Now
+ /// Nullable:True
+ ///
+ public DateTime? ReportTime { get; set; }
- ///
- /// Desc:上报人
- /// Default:
- /// Nullable:True
- ///
- public string Reporter {get;set;}
+ ///
+ /// Desc:上报人
+ /// Default:
+ /// Nullable:True
+ ///
+ public string Reporter { get; set; }
- ///
- /// Desc:盗采点id
- /// Default:
- /// Nullable:True
- ///
- public string MinePointId {get;set;}
+ ///
+ /// Desc:盗采点id
+ /// Default:
+ /// Nullable:True
+ ///
+ public string MinePointId { get; set; }
+ ///
+ /// 上报单位
+ ///
+ public string ReportUnit { get; set; }
}
}