基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
837 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPA.SAAS.Manage.Comm.Model
  7. {
  8. public class ListSelectQuery
  9. {
  10. public string Id { get; set; }
  11. public string Name { get; set; }
  12. public string AutoKey { get; set; }
  13. }
  14. public class ListSelectDeviceQuery
  15. {
  16. public string Id { get; set; }
  17. public string Name { get; set; }
  18. public string AutoKey { get; set; }
  19. public string ProductVersionId { get; set; }
  20. public string ProductId { get; set; }
  21. public string Vesion { get; set; }
  22. public string PrductKey { get; set; }
  23. public int? ProductNumber { get; set; }
  24. public string ProductName { get; set; }
  25. public string ProductUrl { get; set; }
  26. }
  27. }