identificationOfCultivatedL.../OpenAuth.Repository/Domain/IllegalConstructionAssessme...

51 lines
1.6 KiB
C#
Raw Permalink Normal View History

2026-02-07 18:17:58 +08:00
using OpenAuth.Repository.Domain.workflow;
using SqlSugar;
2026-02-04 21:43:24 +08:00
namespace OpenAuth.Repository.Domain;
2026-02-10 08:33:20 +08:00
[SugarTable("zy_illegal_construction_assessment")]
2026-02-04 21:43:24 +08:00
public class IllegalConstructionAssessment
{
2026-02-07 18:17:58 +08:00
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public string Id { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "title", IsNullable = false)]
2026-02-07 18:17:58 +08:00
public string Title { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "business_number", IsNullable = false)]
2026-02-07 18:17:58 +08:00
public string BusinessNumber { get; set; }
[SugarColumn(ColumnName = "type")] public int? Type { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "attachments")]
public string? Attachments { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "acceptance_time", IsNullable = false)]
2026-02-07 18:17:58 +08:00
public DateTime AcceptanceTime { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "receive_time")]
public DateTime? ReceiveTime { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "status", IsNullable = false)]
public string Status { get; set; } = "Submitted";
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "create_time", IsNullable = false)]
2026-02-07 18:17:58 +08:00
public DateTime CreateTime { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "create_user", IsNullable = false)]
2026-02-07 18:17:58 +08:00
public string CreateUser { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "update_user")]
public string? UpdateUser { get; set; }
2026-02-04 21:43:24 +08:00
[SugarColumn(ColumnName = "remark")] public string? Remark { get; set; }
2026-02-07 18:17:58 +08:00
[SugarColumn(ColumnName = "create_user_id", IsNullable = false)]
public long CreateUserId { get; set; }
2026-02-07 18:17:58 +08:00
[SugarColumn(IsIgnore = true)]
2026-02-07 18:17:58 +08:00
public List<ZyFlowWorkitem> Workitems { get; set; }
}