UserLocationDbEntity.cs 717 Bytes
using SqlSugar;

namespace FoodLabeling.Application.Services.DbModels;

/// <summary>
/// userlocation 表映射(成员-门店关联)
/// </summary>
[SugarTable("userlocation")]
public class UserLocationDbEntity
{
    [SugarColumn(IsPrimaryKey = true)]
    public string Id { get; set; } = string.Empty;

    public bool IsDeleted { get; set; }

    public DateTime CreationTime { get; set; }

    public string? CreatorId { get; set; }

    public string? LastModifierId { get; set; }

    public DateTime? LastModificationTime { get; set; }

    public string UserId { get; set; } = string.Empty;

    public string LocationId { get; set; } = string.Empty;

    public string? ConcurrencyStamp { get; set; }
}