65 lines
1.6 KiB
C#
65 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using SqlSugar;
|
|
using OfficeOpenXml.Attributes;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ARW.Model.Models.Business.Settings.PlatformSpecs
|
|
{
|
|
/// <summary>
|
|
/// 平台资质与规范,数据实体对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-22
|
|
/// </summary>
|
|
[SugarTable("tb_platform_spec")]
|
|
public class PlatformSpec : BusinessBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "platform_spec_id")]
|
|
public int PlatformSpecId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "platform_spec_guid")]
|
|
public long PlatformSpecGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :标题
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "platform_spec_title")]
|
|
public string PlatformSpecTitle { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :内容
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "platform_spec_content")]
|
|
public string PlatformSpecContent { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :排序
|
|
/// 空值 : false
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "platform_spec_sort")]
|
|
public int PlatformSpecSort { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
} |