KxsFeedback.cs 482 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class KxsFeedback
  6. {
  7. public int Id { get; set; }
  8. public string BackType { get; set; }
  9. public string Content { get; set; }
  10. public int UserId { get; set; }
  11. public int Version { get; set; }
  12. public int DelFlag { get; set; }
  13. public DateTime? UpdateTime { get; set; }
  14. public DateTime? CreateTime { get; set; }
  15. }
  16. }