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

  1. using BPA.SAAS.Manage.Core.Device;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsTechnology
  8. {
  9. public class DeviceGoodsTechnologyView : BPA_DeviceInfo
  10. {
  11. public List<GoodsTechnologyInfo> GoodsTechnologyInfo { get; set; }
  12. }
  13. public class GoodsTechnologyInfo
  14. {
  15. /// <summary>
  16. /// 工艺id
  17. /// </summary>
  18. public string DeviceTechnologyId { get; set; }
  19. /// <summary>
  20. /// 工艺名称
  21. /// </summary>
  22. public string Name { get; set; }
  23. /// <summary>
  24. /// 设备版本
  25. /// </summary>
  26. public string DeviceVersionKey { get; set; }
  27. }
  28. }