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