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