Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Outputs/LocationOutput.cs
2024-08-27 22:44:42 +08:00

40 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
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 string material_name { get; set; }
public string material_specification { get; set; }
public string code_batch { get; set; }
public decimal num { get; set; }
/// <summary>
/// 0 空库包括已锁定1 空载具码垛 2 合格品 3 待检 4 让步接受 5 不合格
/// </summary>
public int status { get; set; }
/// </summary>
public string barcode { 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; }
}
}