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

49 lines
1.5 KiB

  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.DataBase.Dtos.GoodsTechnology
  7. {
  8. public class GoodsTechnologyActionListView
  9. {
  10. public string DeviceId { get; set; }
  11. public string WarehousrTemplateId { get; set; }
  12. public string GoodsAttributeId { get; set; }
  13. public string DeviceName { get; set; }
  14. public List<GoodsTechnologyActionView> Data { get; set; }
  15. }
  16. public class GoodsTechnologyActionView
  17. {
  18. public string Id { get; set; }
  19. /// <summary>
  20. /// 步骤名称
  21. /// </summary>
  22. public string StepName { get; set; }
  23. /// <summary>
  24. /// 动作json
  25. /// </summary>
  26. public string ActionJson { get; set; }
  27. /// <summary>
  28. /// 商品属性id集合
  29. /// </summary>
  30. public string GoodsAttributeId { get; set; }
  31. /// <summary>
  32. /// 是否物料
  33. /// </summary>
  34. public bool IsBatch { get; set; }
  35. /// <summary>
  36. /// 动作value
  37. /// </summary>
  38. public string ChnologyId { get; set; }
  39. public DateTime CreateAt { get; set; }
  40. public string GroupId { get; set; }
  41. public int IsDeleted { get; set; }
  42. public int Sort { get; set; }
  43. public string GoodsId { get; set; }
  44. public string DeviceId { get; set; }
  45. public string WarehousrTemplateId { get; set; }
  46. }
  47. }