50 lines
942 B
C#
50 lines
942 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Business.Advertisement.Notices
|
|
{
|
|
/// <summary>
|
|
/// 公告展示对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-09
|
|
/// </summary>
|
|
public class NoticeVo
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public int NoticeId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long NoticeGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :标题
|
|
/// </summary>
|
|
public string NoticeTitle { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :内容
|
|
/// </summary>
|
|
public string NoticeContent { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :排序
|
|
/// </summary>
|
|
public int NoticeSort { get; set; }
|
|
|
|
}
|
|
}
|