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.
 
 

34 lines
1.1 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.KitChen.GroupMeal.Application.Service.Device.PushDto.GoodsTechnology
  7. {
  8. public class TechnologyDto
  9. {
  10. public string Id { get; set; }
  11. public string Name { get; set; }
  12. public string DeviceVersionId { get; set; }
  13. public string ForeignKeyRe { get; set; }
  14. public DateTime CreateAt { get; set; }
  15. public List<TechnologyAction> TechnologyActionInfo { get; set; }
  16. }
  17. public class TechnologyAction
  18. {
  19. public string Id { get; set; }
  20. public string TechnologyId { get; set; }
  21. public string ActionName { get; set; }
  22. public string ActionValue { get; set; }
  23. public string ActionType { get; set; }
  24. public string Unit { get; set; }
  25. /// <summary>
  26. /// 工艺模型类型(标识是否物料 1标识物料 0标识其他)
  27. /// </summary>
  28. public int TechnologyType { get; set; }
  29. public DateTime CreateAt { get; set; }
  30. public int Sort { get; set; }
  31. }
  32. }