|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using BPA.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkF
- {
- public class Coordinate
- {
- public int X { get; set; } = 0;
-
- public int Y { get; set; } = 0;
- }
-
- /// <summary>
- /// 菜品库操作类
- /// </summary>
- internal class MaterialOperation
- {
- public Coordinate coordinate { get; set; } = new Coordinate();
-
- /// <summary>
- /// 菜品编号
- /// </summary>
- public string id;
-
- /// <summary>
- /// 菜品位置
- /// </summary>
- public string loc;
-
- public MaterialInfo materialInfo;
-
- /// <summary>
- /// 炒锅编号
- /// </summary>
- public int fryNum;
- }
- }
|