66 lines
1.4 KiB
C#
66 lines
1.4 KiB
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Api.Settings.PlatformSpecs
|
|
{
|
|
/// <summary>
|
|
/// 平台资质与规范展示对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-22
|
|
/// </summary>
|
|
public class PlatformSpecVoApi
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public int PlatformSpecId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long PlatformSpecGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :标题
|
|
/// </summary>
|
|
public string PlatformSpecTitle { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :内容
|
|
/// </summary>
|
|
public string PlatformSpecContent { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :排序
|
|
/// </summary>
|
|
public int PlatformSpecSort { get; set; }
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 平台资质与规范详情展示对象Api
|
|
/// </summary>
|
|
public class PlatformSpecApiDetailsVo
|
|
{
|
|
public int PlatformSpecId { get; set; }
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long PlatformSpecGuid { get; set; }
|
|
public string PlatformSpecTitle { get; set; }
|
|
public string PlatformSpecContent { get; set; }
|
|
public int PlatformSpecSort { get; set; }
|
|
|
|
}
|
|
|
|
}
|