using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
///
/// 业务配置表
///
[SugarTable("mini_service_config")]
[Description("业务配置表")]
public class ServiceConfig : DEntityBase
{
///
/// 配置名称
///
public string Name { get; set; }
///
/// 配置值
///
public string Value { get; set; }
}
}