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/DjyTenantParam.cs

35 lines
889 B
C#

2 years ago
using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Entity
{
/// <summary>
/// 租户参数类别表
/// </summary>
[SugarTable("djy_tenant_param")]
[Description("租户参数类别表")]
public class DjyTenantParam : PrimaryKeyEntity
{
/// <summary>
/// 类别代码
/// </summary>
public string ParaCode { get; set; }
/// <summary>
/// 类别名称
/// </summary>
public string ParaName { get; set; }
/// <summary>
/// 业务大类
/// </summary>
public string Type { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 排序
/// </summary>
public int? Sort { get; set; }
}
}