using System; using System.Collections.Generic; #nullable disable namespace zhengcaioa.Models { public partial class ADPenalty { public Guid Id { get; set; } public DateTime DecisionDate { get; set; } public string Parties { get; set; } public string CaseReason { get; set; } public string DisposalDecision { get; set; } public string SupervisionDepartment { get; set; } public string Url { get; set; } public DateTime? CreateTime { get; set; } public DateTime? UpdateTime { get; set; } public long? CreateUserId { get; set; } public string CreateUserName { get; set; } public long? UpdateUserId { get; set; } public string UpdateUserName { get; set; } } }