This commit is contained in:
Putoo
2026-05-26 18:38:55 +08:00
parent 61cf882b66
commit 6b7193b4c0
33 changed files with 1021 additions and 42 deletions

View File

@@ -0,0 +1,29 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity;
[SplitTable(SplitType.Day)]
[SugarTable("unit_user_equ_log_{year}{month}{day}")]
[Tenant("Kg.SeaTime.Log")]
public class unit_user_equ_log
{
[SugarColumn(IsPrimaryKey = true)] public string logId { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string? ueId { get; set; }
public int? equId { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
[SugarColumn(ColumnDataType = "varchar(max)", 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; }
}