24 lines
532 B
C#
24 lines
532 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
{
|
|
[SugarTable("sys_frontendsettingconfig")]
|
|
public class SysFrontendSettingConfig
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Code { get; set; }
|
|
/// <summary>
|
|
/// 值
|
|
/// </summary>
|
|
public string CodeValue { get; set; }
|
|
}
|
|
}
|