old_flsystem/类库/Api.Framework/Model/fl_dictionary_item.cs

27 lines
545 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
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; }
}
}