namespace RGD.ZhiQianAPI.ZhiQianModel { /// /// agv上报放货成功 /// public class BoxReleased { private string _containerCode; private string _locationCode; private string _caller; private int _taskid; /// /// 容器编码 /// public string containerCode { get => _containerCode; set => _containerCode = value; } /// /// 放货位 /// public string locationCode { get => _locationCode; set => _locationCode = value; } /// /// 上报方,默认为agv /// public string caller { get => _caller; set => _caller = value; } /// /// 任务id /// public int taskId { get => _taskid; set => _taskid = value; } } }