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;
-
- namespace BPASmartClient.FoodStationTest.Model.RawMaterial
- {
- public class RawMaterialStockBin : ObservableObject
- {
-
- public short RawMaterialCount { get { return _mRawMaterialCount; } set { _mRawMaterialCount = value; OnPropertyChanged(); } }
- private short _mRawMaterialCount;
-
- /// <summary>
- /// 原料名称
- /// </summary>
- public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } }
- private string _mRawMaterialName;
-
-
- /// <summary>
- /// 原料对应料仓的位置
- /// </summary>
- public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value; OnPropertyChanged(); } }
- private int _mRawMaterialLocation;
- }
- }
|