Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using BPA.Message;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkS
- {
- public class OrderLocInfo
- {
- public string SuborderId { get; set; }
- public ushort Loc { get; set; }
- public ushort RecipeNumber { get; set; }
- public int BatchingId { get; set; }
- public string GoodName { get; set; }
-
- public int RecipeId { get; set; }
- public int SortNum { get; set; }
-
- public List<int> Recipes { get; set; }
-
- }
- }
|