基础服务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.
 
 

31 lines
759 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.Application.Device.Dtos.DeviceVesion
  7. {
  8. public class DeviceVesionBaseDto
  9. {
  10. public string Id { get; set; }
  11. public string Vesion { get; set; }
  12. public string ProductId { get; set; }
  13. /// <summary>
  14. /// 仓位数量
  15. /// </summary>
  16. public int ProductNumber { get; set; }
  17. /// <summary>
  18. /// 仓位图片
  19. /// </summary>
  20. public string ProductUrl { get; set; }
  21. /// <summary>
  22. /// 模版路径
  23. /// </summary>
  24. public string TemplatePath { get; set; }
  25. public int Status { get; set; }
  26. }
  27. }