From 88ff77df2b3856eeecf3f6d279bbb7f4419079b4 Mon Sep 17 00:00:00 2001 From: Putoo <290555932@qq.com> Date: Fri, 22 May 2026 18:50:05 +0800 Subject: [PATCH] 22 --- .../log/db/unit_user_goods_log.cs | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Service/Application.Domain.Entity/log/db/unit_user_goods_log.cs diff --git a/Service/Application.Domain.Entity/log/db/unit_user_goods_log.cs b/Service/Application.Domain.Entity/log/db/unit_user_goods_log.cs new file mode 100644 index 0000000..67f8eec --- /dev/null +++ b/Service/Application.Domain.Entity/log/db/unit_user_goods_log.cs @@ -0,0 +1,27 @@ +using SqlSugar; +using System; + +namespace Application.Domain.Entity; + +[SplitTable(SplitType.Day)] +[SugarTable("unit_user_goods_log_{year}{month}{day}")] +[Tenant("Kg.SeaTime.Log")] +public class unit_user_goods_log +{ + [SugarColumn(IsPrimaryKey = true)] public string logId { get; set; } + + [SugarColumn(Length = 50, IsNullable = true)] + public string? userId { get; set; } + + public int? goodsId { get; set; } + + [SugarColumn(Length = 50, IsNullable = true)] + public string? code { get; set; } + + public int? count { get; set; } + + [SugarColumn(Length = 255, IsNullable = true)] + public string? remark { get; set; } + + public DateTime? addTime { get; set; } +} \ No newline at end of file