基础服务api
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

27 righe
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. }