using BPA.Helper; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodBigStation.Model { public class RawMaterial :NotifyBase { private int _mIp; public int DeviceIp { get { return _mIp; } set { _mIp = value; OnPropertyChanged(); } } public int RawMaterialCount { get { return _mRawMaterialCount; } set { _mRawMaterialCount = value; OnPropertyChanged(); } } private int _mRawMaterialCount; /// /// 原料中文名 /// public string RawMaterialChineseName { get { return _mRawMaterialChineseName; } set { _mRawMaterialChineseName = value; OnPropertyChanged(); } } private string _mRawMaterialChineseName; /// /// 原料名称 /// public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } } private string _mRawMaterialName; /// /// 原料对应的桶号 /// public int RawMaterialBarrelNum { get { return _mRawMaterialBarrelNum; } set { _mRawMaterialBarrelNum = value;OnPropertyChanged(); } } private int _mRawMaterialBarrelNum; /// /// 需要原料重量 /// public float RawMaterialWeight { get { return _mRawMaterialWeight; } set { _mRawMaterialWeight = value; OnPropertyChanged(); } } private float _mRawMaterialWeight; /// /// 实际的下料中重量 /// public float Laying_Off_Weight { get { return _mLaying_Off_Weight; } set { _mLaying_Off_Weight = value; OnPropertyChanged(); } } private float _mLaying_Off_Weight; /// /// 原料对应料仓的位置 /// public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value; OnPropertyChanged(); } } private int _mRawMaterialLocation; } }