using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_acc_log { /// /// accId /// [SugarColumn(IsPrimaryKey = true, Length = 36)] public string accId { get; set; } /// /// userId /// [SugarColumn(Length = 36, IsNullable = true)] public string? userId { get; set; } /// /// accType /// [SugarColumn(Length = 255, IsNullable = true)] public string? accType { get; set; } /// /// code /// [SugarColumn(Length = 255, IsNullable = true)] public string? code { get; set; } /// /// name /// [SugarColumn(Length = 255, IsNullable = true)] public string? name { get; set; } /// /// amount /// [SugarColumn(Length = 18, IsNullable = true)] public decimal? amount { get; set; } /// /// addTime /// [SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; } /// /// endTime /// [SugarColumn(IsNullable = true)] public DateTime? endTime { get; set; } /// /// remark /// [SugarColumn(Length = 255, IsNullable = true)] public string? remark { get; set; } } }