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

32 lines
932 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.DataBase.Dtos.GoodsTechnology
  7. {
  8. public class GoodsTechnologyActionBaseDto
  9. {
  10. public string Id { get; set; }
  11. /// <summary>
  12. /// 步骤名称
  13. /// </summary>
  14. public string StepName { get; set; }
  15. /// <summary>
  16. /// 动作json
  17. /// </summary>
  18. public string ActionJson { get; set; }
  19. /// <summary>
  20. /// 商品属性id集合
  21. /// </summary>
  22. public string GoodsAttributeId { get; set; }
  23. public string ChnologyId { get; set; }
  24. public int? Sort { get; set; }
  25. public bool IsBatch { get; set; } = false;
  26. public string GoodsId { get; set; }
  27. public string DeviceId { get; set; }
  28. public string WarehousrTemplateId { get; set; }
  29. }
  30. }