二楼下升降机机械手边调度逻辑

This commit is contained in:
2024-05-06 10:49:25 +08:00
parent 18ff3b29ed
commit 87d8da928a
7 changed files with 693 additions and 155 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class CarryBindFloor2UpDownMachineInput
{
public string? carry_id { get; set; }
public string? carry_code { get; set; }
public string? carrystd_id { get; set; }
public string? membercarry_id { get; set; }
public string? membercarry_code { get; set; }
}
}