using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Log")]
public class game_mall_log
{
///
/// logId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string logId { get; set; }
///
/// mallId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? mallId { get; set; }
///
/// type
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? type { get; set; }
///
/// pars
///
[SugarColumn(Length = 50, IsNullable = true)]
public Int32? pars { get; set; }
///
/// count
///
[SugarColumn(IsNullable = true)]
public int? count { get; set; }
///
/// price
///
[SugarColumn(IsNullable = true)]
public long? price { get; set; }
///
/// payType
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? payType { get; set; }
///
/// userId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
///
/// endTime
///
[SugarColumn(IsNullable = true)]
public DateTime? endTime { get; set; }
}
}