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.
35 lines
914 B
C#
35 lines
914 B
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Core.Entity
|
|
{
|
|
/// <summary>
|
|
/// 租户参数定义
|
|
/// </summary>
|
|
[SugarTable("djy_tenant_param_item")]
|
|
[Description("租户参数定义")]
|
|
public class DjyTenantParamItem : PrimaryKeyEntity
|
|
{
|
|
/// <summary>
|
|
/// 租户参数类别
|
|
/// </summary>
|
|
public string ParaCode { get; set; }
|
|
/// <summary>
|
|
/// 租户参数代码
|
|
/// </summary>
|
|
public string ItemCode { get; set; }
|
|
/// <summary>
|
|
/// 租户参数名称
|
|
/// </summary>
|
|
public string ItemName { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
public int? Sort { get; set; }
|
|
}
|
|
} |