LASAPlatform/OpenAuth.Repository/Domain/SysAppSetting.cs

19 lines
415 B
C#
Raw Permalink Normal View History

2025-08-08 14:47:05 +08:00
using Newtonsoft.Json.Linq;
using SqlSugar;
2025-08-08 14:36:53 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
2025-08-08 14:47:05 +08:00
[SugarTable("sys_appsetting")]
2025-08-08 14:36:53 +08:00
public class SysAppSetting
{
[SugarColumn(IsPrimaryKey = true)]
public long UserId { get; set; }
2025-08-11 16:26:49 +08:00
public string SettingInfo { get; set; }
2025-08-08 14:36:53 +08:00
}
}