//行政处罚
|
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;
|
|
/// <summary>
|
/// 行政处罚
|
/// </summary>
|
[SugarTable("FBD_ADPenalty","行政处罚")]
|
[IncreTable]
|
public class ADPenalty: basemodelNoId
|
{
|
|
/// <summary>
|
/// 投诉ID,主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true)]
|
public Guid Id { get; set; }
|
/// <summary>
|
/// 决定日期
|
/// </summary>
|
[SugarColumn(ColumnDescription = "决定日期")]
|
public DateTime DecisionDate { get; set; }
|
|
/// <summary>
|
/// 当事人信息,可能包含多个当事人,用逗号分隔
|
/// </summary>
|
[SugarColumn(ColumnDescription = "当事人信息", IsNullable =true, Length = 255)]
|
public string? Parties { get; set; }
|
|
/// <summary>
|
/// 案由描述
|
/// </summary>
|
[SugarColumn(ColumnDescription = "案由描述", IsNullable = true, Length = int.MaxValue)]
|
public string? CaseReason { get; set; }
|
|
/// <summary>
|
/// 处理决定内容
|
/// </summary>
|
[SugarColumn(ColumnDescription = "处理决定内容", IsNullable = true, Length = int.MaxValue)]
|
public string? DisposalDecision { get; set; }
|
|
/// <summary>
|
/// 采购监督部门名称
|
/// </summary>
|
[SugarColumn(ColumnDescription = "采购监督部门名称", IsNullable = true ,Length=255)]
|
public string? SupervisionDepartment { get; set; }
|
|
|
/// <summary>
|
/// 线上地址
|
/// </summary>
|
[SugarColumn(Length = 255, IsNullable = true, ColumnDescription = "线上地址")]
|
public string Url { get; set; }
|
|
}
|