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 /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// Desc:标题 /// Default: /// Nullable:False /// public string Title { get; set; } /// /// Desc:状态 /// Default:'待处理'::character varying /// Nullable:True /// public short? 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 short? 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 bool? IsDelete { get; set; } public string ViolationTypeName { get; set; } public string StatusName { get; set; } } }