bug修复

This commit is contained in:
2024-06-07 17:30:47 +08:00
parent 3549274b72
commit 51bfc0d99c
56 changed files with 357 additions and 315 deletions

View File

@@ -6,8 +6,14 @@ using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class CarryBindFloor2UpDownMachineInput
public class CarryBatchBindInput
{
public List<CarryBindInput> carryBindInputs { get; set; }
}
public class CarryBindInput
{
public string? org { get; set; }
public string? create_id { get; set; }
public string? carry_id { get; set; }
public string? carry_code { get; set; }
public string? carrystd_id { get; set; }

View File

@@ -92,5 +92,9 @@ public partial class WmsElevatorH : BaseEntity<string>
/// 当前电梯所在楼层
/// </summary>
public int current_floor { get; set; }
/// <summary>
/// 电梯占用状态
/// </summary>
public int is_use { get; set; }
}

View File

@@ -5,7 +5,6 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Configurations>Debug;Release;tianyi</Configurations>
<ServerGarbageCollection>false</ServerGarbageCollection>
</PropertyGroup>
<ItemGroup>