//行政处罚
using Admin.NET.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FZCZTB.NET.MD;
///
/// 行政处罚
///
[SugarTable("FBD_ADPenalty","行政处罚")]
[IncreTable]
public class ADPenalty: basemodelNoId
{
///
/// 投诉ID,主键
///
[SugarColumn(IsPrimaryKey = true)]
public Guid Id { get; set; }
///
/// 决定日期
///
[SugarColumn(ColumnDescription = "决定日期")]
public DateTime DecisionDate { get; set; }
///
/// 当事人信息,可能包含多个当事人,用逗号分隔
///
[SugarColumn(ColumnDescription = "当事人信息", IsNullable =true, Length = 255)]
public string? Parties { get; set; }
///
/// 案由描述
///
[SugarColumn(ColumnDescription = "案由描述", IsNullable = true, Length = int.MaxValue)]
public string? CaseReason { get; set; }
///
/// 处理决定内容
///
[SugarColumn(ColumnDescription = "处理决定内容", IsNullable = true, Length = int.MaxValue)]
public string? DisposalDecision { get; set; }
///
/// 采购监督部门名称
///
[SugarColumn(ColumnDescription = "采购监督部门名称", IsNullable = true ,Length=255)]
public string? SupervisionDepartment { get; set; }
///
/// 线上地址
///
[SugarColumn(Length = 255, IsNullable = true, ColumnDescription = "线上地址")]
public string Url { get; set; }
}