移动系统liao
8 小时以前 dfba57ee3b9db5b82baa9aec90ca9fb64e59e8b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//行政处罚
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; }
 
}