LASAPlatform/OpenAuth.Repository/Domain/SysAppSetting.cs

21 lines
454 B
C#
Raw 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; }
[SugarColumn(IsJson = true)]
2025-08-08 14:47:05 +08:00
public JObject SettingInfo { get; set; }
2025-08-08 14:36:53 +08:00
}
}