123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
- {
- public class AnnouncementView
- {
- /// <summary>
- /// AnnouncementID
- /// </summary>
- public System.Guid? AnnouncementID { get; set; }
- public string Title { get; set; }
- public string Content { get; set; }
- public Nullable<System.DateTime> StartTime { get; set; }
- public Nullable<System.DateTime> EndTime { get; set; }
- public bool? IsTop { get; set; }
- public string IsTopStr
- {
- get
- {
- return IsTop == null ? "" : (IsTop.Value ? "是" : "否");
- }
- }
- public int? OrderByNum { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- public string CreateUserName { get; set; }
- public Nullable<System.Guid> CreateDepartmentID { get; set; }
- public string CreateDepartmentName { get; set; }
- public IEnumerable<Guid> UserIds { get; set; }
- public IEnumerable<Guid> RoleIds { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- public string ModifyUserName { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
- }
- }
|