You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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; }
- }
- }
|