Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- 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; }
-
- }
- }
|