Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- 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; }
- }
- }
|