KxsGdReport.cs 960 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaProductModels
  4. {
  5. public partial class KxsGdReport
  6. {
  7. public int Id { get; set; }
  8. public int IsCheck { get; set; }
  9. public string GdMobile { get; set; }
  10. public string GdSn { get; set; }
  11. public int Status { get; set; }
  12. public string Remark { get; set; }
  13. public string PutMobile { get; set; }
  14. public string PutName { get; set; }
  15. public string City { get; set; }
  16. public string Province { get; set; }
  17. public string UserCode { get; set; }
  18. public string Username { get; set; }
  19. public int UserId { get; set; }
  20. public int Version { get; set; }
  21. public int DelFlag { get; set; }
  22. public DateTime? UpdateTime { get; set; }
  23. public DateTime? CreateTime { get; set; }
  24. public int PutType { get; set; }
  25. public int GdOrderId { get; set; }
  26. }
  27. }