基础服务api
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

27 linhas
774 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.GoodsAttribute
  7. {
  8. public class GoodsBomAttributeDto
  9. {
  10. public string GoodsId { get; set; }
  11. public string BomId { get; set; }
  12. public string GoodsAttributeValue { get; set; }
  13. public string Type { get; set; }
  14. public string BomName { get; set; }
  15. public string BomType { get; set; }
  16. public string[] BomtypeList { get; set; }
  17. public List<Mate> Mate { get; set; }
  18. public string[] Shuxing { get; set; }
  19. }
  20. public class Mate
  21. {
  22. public string batchingId { get; set; }
  23. public int dosage { get; set; }
  24. }
  25. }