12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class KxsBanner
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public string Contents { get; set; }
- public int Status { get; set; }
- public string Remark { get; set; }
- public string ColId { get; set; }
- public string Url { get; set; }
- public string PicUrl { 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; }
- }
- }
|