查询料架亮灯
This commit is contained in:
30
DOAN.Model/PBL/Dto/BIgScreenDto.cs
Normal file
30
DOAN.Model/PBL/Dto/BIgScreenDto.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
namespace DOAN.Model.PBL.Dto;
|
||||
|
||||
public class BIgScreenDto
|
||||
{
|
||||
//料架号
|
||||
public string RackCode { get; set; }
|
||||
|
||||
//
|
||||
public LayerObject[] LayerObjectArray { get; set; }
|
||||
|
||||
//是否亮灯
|
||||
public bool isLight { get; set; }
|
||||
}
|
||||
|
||||
public class LayerObject
|
||||
{
|
||||
// 层号
|
||||
public int LayerNum { get; set; }
|
||||
|
||||
// 零件号
|
||||
public string Partnumber { get; set; }
|
||||
// 最大容量
|
||||
public int MaxCapacity { get; set; }
|
||||
|
||||
// 箱子数
|
||||
public int? PackageNum { get; set; }
|
||||
|
||||
//是否亮灯
|
||||
public bool isLight { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user