27 lines
545 B
C#
27 lines
545 B
C#
using Api.Framework.Tools;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Api.Framework.Model
|
|
{
|
|
/// <summary>
|
|
/// 配置
|
|
/// </summary>
|
|
public class fl_dictionary_item : base_model
|
|
{
|
|
/// <summary>
|
|
/// 配置的名称
|
|
/// </summary>
|
|
public string dickey { get; set; }
|
|
/// <summary>
|
|
/// 配置的数据
|
|
/// </summary>
|
|
public string dicvalue { get; set; }
|
|
|
|
}
|
|
}
|