using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Toolkit.Mvvm.ComponentModel;
namespace BPASmartClient.JXJFoodSmallStation.Model
{
public class WindSendDeviceParMode : ObservableObject
{
///
/// 原料名称
///
public string MaterialName { get { return _mMaterialName; } set { _mMaterialName = value; OnPropertyChanged(); } }
private string _mMaterialName = string.Empty;
///
/// 料仓上限重量
///
public float UpperLimitWeight { get { return _mUpperLimitWeight; } set { _mUpperLimitWeight = value; OnPropertyChanged(); } }
private float _mUpperLimitWeight;
///
/// 料仓下限重量
///
public float LowerLimitWeight { get { return _mLowerLimitWeight; } set { _mLowerLimitWeight = value; OnPropertyChanged(); } }
private float _mLowerLimitWeight;
///
/// 料仓上限重量偏移
///
public float UpperLimitWeightOffset { get { return _mUpperLimitWeightOffset; } set { _mUpperLimitWeightOffset = value; OnPropertyChanged(); } }
private float _mUpperLimitWeightOffset;
///
/// 料仓下限重量偏移
///
public float LowerLimitWeightOffset { get { return _mLowerLimitWeightOffset; } set { _mLowerLimitWeightOffset = value; OnPropertyChanged(); } }
private float _mLowerLimitWeightOffset;
///
/// 是否重复
///
[Newtonsoft.Json.JsonIgnore]
public bool IsRedundant { get { return _mIsRedundant; } set { _mIsRedundant = value; OnPropertyChanged(); } }
private bool _mIsRedundant;
}
}