InformationNew.cs 701 B

1234567891011121314151617181920212223
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace LogoForceTestApp.Modules.MainModule.Models
  8. {
  9. public class InformationNew : BindableBase
  10. {
  11. public Guid Id { get; set; }
  12. public DateTime CreateTime { get; set; }
  13. public string OperatorCode { get; set; }
  14. public string ProCode { get; set; }
  15. public double SpendTime { get; set; }
  16. public string ProType { get; set; }
  17. public string ProNo { get; set; }
  18. public string ItemCode { get; set; }
  19. public string OrderNo { get; set; }
  20. public string TestResult { get; set; }
  21. }
  22. }