using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbSysSetting
{
public int Id { get; set; }
///
/// 分类
///
public string? Type { get; set; }
///
/// 分类
///
public string? Etype { get; set; }
///
/// 名称
///
public string? Name { get; set; }
///
/// 值
///
public string? Value { get; set; }
public string? Remark { get; set; }
public string? Eremark { get; set; }
///
/// 是否允许界面编辑
///
public bool AllowEdit { get; set; }
}