|
|
|
@ -0,0 +1,35 @@
|
|
|
|
|
using System;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
namespace Myshipping.Core.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 租户参数表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("djy_tenant_param_value")]
|
|
|
|
|
[Description("租户参数表")]
|
|
|
|
|
public class DjyTenantParamValue : PrimaryKeyEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 参数类别
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ParaCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 租户id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? TenantId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 参数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ItemCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 备注
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 排序
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? Sort { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|