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.
|
- using BPA.SAAS.Manage.Core.DataBase;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Bom
- {
- public class BomList
- {
- public string Id { get; set; }
- public string Name { get; set; }
- public string Code { get; set; }
- public int Sort { get; set; }
- /// <summary>
- /// 1主料配方0 辅料配方
- /// </summary>
- public bool IsMain { get; set; }
- public List<string> BomTypeIds { get; set; }
- public List<BPA_BomEntry> BomEntry { get; set; }
- }
- }
|