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.
BookingHeChuan/Myshipping.Core/Entity/DJY/DjyTenantParamValue.cs

35 lines
881 B
C#

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; }
}
}