12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
- {
- public class NoticeView
- {
- public Guid NoticeID { get; set; }
- public int Type { get; set; }
- public string TypeDesc
- {
- get
- {
- return DictionaryCache.GetDictionaryItem("NoticeType", Type).Result?.Name;
- }
- }
- public bool? IsTop { get; set; }
- public string Title { get; set; }
- public DateTime? CreateTime { get; set; }
- public string CreateUserName { get; set; }
- public string Content { get; set; }
- public string Url { get; set; }
- public string PID { get; set; }
- public string FID { get; set; }
- public string KID { get; set; }
- }
- }
|