This commit is contained in:
Putoo
2026-05-27 18:26:50 +08:00
parent 36a7575990
commit 0d5443ef36
28 changed files with 1043 additions and 25 deletions

View File

@@ -9,7 +9,7 @@ namespace Application.Domain.Entity;
public class unit_user_equ_log
{
[SugarColumn(IsPrimaryKey = true)] public string logId { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string? ueId { get; set; }
@@ -19,11 +19,11 @@ public class unit_user_equ_log
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
[SugarColumn(ColumnDataType = "varchar(max)", IsNullable = true, IsJson = true)]
[SugarColumn(ColumnDataType = "longtext", IsNullable = true, IsJson = true)]
public unit_user_equ? equData { get; set; }
[SugarColumn(Length = 255, IsNullable = true)]
public string? remark { get; set; }
public DateTime? addTime { get; set; }
[SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; }
}