You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
611 B
C#
25 lines
611 B
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
using Myshipping.Core;
|
|
|
|
namespace Myshipping.Core.Entity
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarTable("djy_user_config")]
|
|
[Description("用户自定义配置")]
|
|
public class DjyUserConfig : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 类型(列表显示列、查询条件自定义等)
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
/// <summary>
|
|
/// 配置数据json
|
|
/// </summary>
|
|
public string ConfigJson { get; set; }
|
|
}
|
|
} |