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 System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsAttribute
- {
- public class GoodsBomAttributeDto
- {
- public string GoodsId { get; set; }
- public string BomId { get; set; }
- public string GoodsAttributeValue { get; set; }
- public string Type { get; set; }
- public string BomName { get; set; }
- public string BomType { get; set; }
- public string[] BomtypeList { get; set; }
- public List<Mate> Mate { get; set; }
- public string[] Shuxing { get; set; }
- }
- public class Mate
- {
- public string batchingId { get; set; }
- public int dosage { get; set; }
- }
- }
|