30 lines
876 B
C#
30 lines
876 B
C#
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; }
|
|
}
|
|
}
|