using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Api.Settings.PlatformSpecs
{
///
/// 平台资质与规范展示对象Api
///
/// @author lwh
/// @date 2023-10-22
///
public class PlatformSpecVoApi
{
///
/// 描述 :
///
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; }
}
///
/// 平台资质与规范详情展示对象Api
///
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; }
}
}