Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- using BPA.Message;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkM
- {
- 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 bool MakeType { get; set; }
- }
-
- /// <summary>
- /// 存储订单中素菜荤菜数量
- /// </summary>
- public class OrderInformation
- {
- public int VegatableNumber { get; set; }
-
- public int DishNum { get; set; }
-
-
- // public GoodsMakeType MakeType { get; set; }
- }
- }
|