KxsBanner.cs 603 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class KxsBanner
  6. {
  7. public int Id { get; set; }
  8. public int Status { get; set; }
  9. public string Remark { get; set; }
  10. public string BanType { get; set; }
  11. public string Url { get; set; }
  12. public string PicUrl { get; set; }
  13. public string Title { get; set; }
  14. public int Version { get; set; }
  15. public int DelFlag { get; set; }
  16. public DateTime? UpdateTime { get; set; }
  17. public DateTime? CreateTime { get; set; }
  18. }
  19. }