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

24 lines
660 B

  1. using BPA.SAAS.Manage.Core.DataBase;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Bom
  8. {
  9. public class BomList
  10. {
  11. public string Id { get; set; }
  12. public string Name { get; set; }
  13. public string Code { get; set; }
  14. public int Sort { get; set; }
  15. /// <summary>
  16. /// 1主料配方0 辅料配方
  17. /// </summary>
  18. public bool IsMain { get; set; }
  19. public List<string> BomTypeIds { get; set; }
  20. public List<BPA_BomEntry> BomEntry { get; set; }
  21. }
  22. }