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.
|
- 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; }
- }
- }
|