2025-03-16 03:17:36 +08:00
|
|
|
namespace Seyounth.Hyosung.Data.Models.Plc;
|
|
|
|
|
|
|
|
public class PlcStackingInfo
|
|
|
|
{
|
2025-03-19 20:55:31 +08:00
|
|
|
public long TrayCode { get; set; }
|
2025-03-16 03:17:36 +08:00
|
|
|
|
2025-03-19 20:55:31 +08:00
|
|
|
public List<long> YarnCode { get; set; } = new ();
|
2025-03-16 03:17:36 +08:00
|
|
|
|
|
|
|
public int YarnCount { get; set; }
|
|
|
|
|
|
|
|
public int TotalYarnCount { get; set; }
|
|
|
|
}
|