Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.AGV
- {
- /// <summary>
- /// AGV上下料交互反馈接口(上游系统->快仓系统)
- /// </summary>
- internal class AGVLoadInteracteModel
- {
- //private static AGVLoadInteracteModel _instance;
- //public static AGVLoadInteracteModel GetInstance=>_instance ??= new AGVLoadInteracteModel();
- public string agvCode { get; set;}
- public string jobId { get; set; }
- public string msgId { get; set; }
- public bool? complete { get; set; }
- }
- }
|