22
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user