using Newtonsoft.Json;
using OfficeOpenXml.Attributes;
using SqlSugar;
using System;
namespace ARW.Model.Vo.Api.Advertisement.Notices
{
///
/// 公告展示对象Api
///
/// @author lwh
/// @date 2023-10-09
///
public class NoticeVoApi
{
///
/// 描述 :
///
public int NoticeId { get; set; }
///
/// 描述 :
///
[JsonConverter(typeof(ValueToStringConverter))]
public long NoticeGuid { get; set; }
///
/// 描述 :标题
///
public string NoticeTitle { get; set; }
///
/// 描述 :内容
///
public string NoticeContent { get; set; }
///
/// 描述 :排序
///
public int NoticeSort { get; set; }
}
///
/// 公告详情展示对象Api
///
public class NoticeApiDetailsVo
{
public int NoticeId { get; set; }
[JsonConverter(typeof(ValueToStringConverter))]
public long NoticeGuid { get; set; }
public string NoticeTitle { get; set; }
public string NoticeContent { get; set; }
public int NoticeSort { get; set; }
}
}