Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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
- {
- /// <summary>
- /// 原料名称
- /// </summary>
- public string MaterialName { get { return _mMaterialName; } set { _mMaterialName = value; OnPropertyChanged(); } }
- private string _mMaterialName = string.Empty;
-
- /// <summary>
- /// 料仓上限重量
- /// </summary>
- public float UpperLimitWeight { get { return _mUpperLimitWeight; } set { _mUpperLimitWeight = value; OnPropertyChanged(); } }
- private float _mUpperLimitWeight;
-
- /// <summary>
- /// 料仓下限重量
- /// </summary>
- public float LowerLimitWeight { get { return _mLowerLimitWeight; } set { _mLowerLimitWeight = value; OnPropertyChanged(); } }
- private float _mLowerLimitWeight;
-
- /// <summary>
- /// 料仓上限重量偏移
- /// </summary>
- public float UpperLimitWeightOffset { get { return _mUpperLimitWeightOffset; } set { _mUpperLimitWeightOffset = value; OnPropertyChanged(); } }
- private float _mUpperLimitWeightOffset;
-
- /// <summary>
- /// 料仓下限重量偏移
- /// </summary>
- public float LowerLimitWeightOffset { get { return _mLowerLimitWeightOffset; } set { _mLowerLimitWeightOffset = value; OnPropertyChanged(); } }
- private float _mLowerLimitWeightOffset;
-
- /// <summary>
- /// 是否重复
- /// </summary>
- [Newtonsoft.Json.JsonIgnore]
- public bool IsRedundant { get { return _mIsRedundant; } set { _mIsRedundant = value; OnPropertyChanged(); } }
- private bool _mIsRedundant;
-
- }
- }
|