You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
660 B

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