You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodBigStation.Model
- {
- public class RawMaterial :ObservableObject
- {
- 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;
-
- /// <summary>
- /// 原料中文名
- /// </summary>
- public string RawMaterialChineseName { get { return _mRawMaterialChineseName; } set { _mRawMaterialChineseName = value; OnPropertyChanged(); } }
- private string _mRawMaterialChineseName;
-
- /// <summary>
- /// 原料名称
- /// </summary>
- public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } }
- private string _mRawMaterialName;
-
- /// <summary>
- /// 原料对应的桶号
- /// </summary>
- public int RawMaterialBarrelNum { get { return _mRawMaterialBarrelNum; } set { _mRawMaterialBarrelNum = value;OnPropertyChanged(); } }
- private int _mRawMaterialBarrelNum;
-
- /// <summary>
- /// 需要原料重量
- /// </summary>
- public float RawMaterialWeight { get { return _mRawMaterialWeight; } set { _mRawMaterialWeight = value; OnPropertyChanged(); } }
- private float _mRawMaterialWeight;
-
- /// <summary>
- /// 实际的下料中重量
- /// </summary>
- public float Laying_Off_Weight { get { return _mLaying_Off_Weight; } set { _mLaying_Off_Weight = value; OnPropertyChanged(); } }
- private float _mLaying_Off_Weight;
-
- /// <summary>
- /// 原料对应料仓的位置
- /// </summary>
- public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value; OnPropertyChanged(); } }
- private int _mRawMaterialLocation;
- }
- }
|