KxsMachineTrack.cs 843 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaProductModels
  4. {
  5. public partial class KxsMachineTrack
  6. {
  7. public int Id { get; set; }
  8. public int ChangeType { get; set; }
  9. public int TrackType { get; set; }
  10. public int BrandId { get; set; }
  11. public int MachineId { get; set; }
  12. public int AfterUserId { get; set; }
  13. public int BeforeUserId { 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. public int PartnerId { get; set; }
  19. public string PosSn { get; set; }
  20. public int BeforeWhsId { get; set; }
  21. public int AfterWhsId { get; set; }
  22. public string Remark { get; set; }
  23. }
  24. }