Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.DosingSystem.Model
- {
- public class AliyunStockPropertyReportModel
- {
- public int StockOnlineStatus { get; set; }
- public int StockRealWeight { get; set; }
-
- public float BucketRealWeight { get; set; }
-
- public string StockBatchStatus { get; set; }
-
- public int StockWorkModel { get; set; }
-
- public string StockMaterialType { get; set; }
-
- public int StockDeviceNum { get; set; }
- public string StockDeviceName { get; set; }
-
- public float StockSlowlyAddWeight { get; set; }
-
- public float StockPreCloseValueWeight { get; set; }
-
- public int StockRapidAcceleration { get; set; }
-
- public int StockSlowAcceleration { get; set; }
- public int StockServoManualSpeed { get; set; }
- public int StockUpperLimitWeight { get; set; }
- public int StockLowerLimitWeight { get; set; }
- public int StockStirringSpeed { get; set; }
-
- }
- }
|