This commit is contained in:
qianjiawei
2024-03-14 17:28:33 +08:00
parent f37ad2bfa3
commit 501a39dda5
6 changed files with 359 additions and 26 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto
{
public class LocationOutput
{
public string location_code { get; set; }
public int type { get; set; }
public int layers { get; set; }
public string carry_code { get; set; }
public string material_code { get; set; }
public decimal num { get; set; }
}
public class ZsjOutput
{
public string? device_code { get; set; }
public string? device_state { get; set; }
public string? temp1 { get; set; }
public string? temp3 { get; set; }
public string? temp5 { get; set; }
public string? zsspeed { get; set; }
public string? sjspeed { get; set; }
public string? cxtime { get; set; }
}
}