69 lines
1.7 KiB
C#
69 lines
1.7 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Resource")]
|
|
public class game_mall
|
|
{
|
|
/// <summary>
|
|
/// mallId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string mallId { get; set; }
|
|
|
|
/// <summary>
|
|
/// areaId
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? areaId { get; set; }
|
|
|
|
/// <summary>
|
|
/// name
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? name { get; set; }
|
|
|
|
/// <summary>
|
|
/// type
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? type { get; set; }
|
|
|
|
/// <summary>
|
|
/// goodsId
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? goodsId { get; set; }
|
|
|
|
/// <summary>
|
|
/// price
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? price { get; set; }
|
|
|
|
/// <summary>
|
|
/// payType
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? payType { get; set; }
|
|
|
|
/// <summary>
|
|
/// sort
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? sort { get; set; }
|
|
|
|
/// <summary>
|
|
/// addTime
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime? addTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// endTime
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime? endTime { get; set; }
|
|
}
|
|
} |