Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodSmallStation.Model
- {
- public class RemoteRecipeRawMaterial
- {
- private int _mIp;
- public int DeviceIp { get { return _mIp; } set { _mIp = value; } }
-
- private int _mRawMaterialBarrelNum;
- /// <summary>
- /// 原料对应的桶号
- /// </summary>
- public int RawMaterialBarrelNum { get { return _mRawMaterialBarrelNum; } set { _mRawMaterialBarrelNum = value; } }
-
- private double _mRawMaterialWeight;
- /// <summary>
- /// 需要原料重量
- /// </summary>
- public double RawMaterialWeight { get { return _mRawMaterialWeight; } set { _mRawMaterialWeight = value;} }
-
-
- private int _mRawMaterialLocation;
- /// <summary>
- /// 原料对应料仓的位置
- /// </summary>
- public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value;} }
- }
- }
|