123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class KxsSysMsg
- {
- public int Id { get; set; }
- public string Content { get; set; }
- public string Url { get; set; }
- public DateTime? PushTime { get; set; }
- public int PushType { get; set; }
- public string BgPic { get; set; }
- public DateTime? EndTime { get; set; }
- public DateTime? StartTime { get; set; }
- public int MsgType { get; set; }
- public string Summary { get; set; }
- public string Title { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|