using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIP_Models
|
{
|
/// <summary>
|
/// 绑定、解绑 AGV小车的对象
|
/// </summary>
|
public class AGVBindingObject
|
{
|
/// <summary>
|
/// 要插入的UdtWIP_AGVBindingRecord对象
|
/// </summary>
|
public UdtWip_AgvBindingRecord InsertBindRecord { get; set; }
|
|
/// <summary>
|
/// 要插入的UdtWIP_AGVRealTimeStatus对象
|
/// </summary>
|
public UdtWip_AgvRealTimeStatus InsertRealTimeStatus { get; set; }
|
|
/// <summary>
|
/// 小车实时状态表更新类
|
/// </summary>
|
public PropertyUpdateParam PropertyUpdateParamForRealTimeStatus { get; set; }
|
|
|
/// <summary>
|
/// 小车绑定记录表更新类
|
/// </summary>
|
public PropertyUpdateParam PropertyUpdateParamForAgvBindingRecord { get; set; }
|
}
|
}
|