Files
atvstdla dc66158497 Add QRValidation project to repository
- Added QRValidation vision control system
- Includes CapCleaningControl UI components
- WebSocket-based barcode validation system
- Support for Crevis PLC integration
- Test projects for PLC emulator, motion, IO panel, and Modbus

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-02 11:38:38 +09:00

42 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UIControl
{
public partial class Unloader
{
public class CPortData
{
/// <summary>
/// sid
/// </summary>
public string sid { get; set; }
/// <summary>
/// 현재진행된 수량
/// </summary>
public int qty { get; set; }
public string towername { get; set; }
/// <summary>
/// 전체기준수량
/// </summary>
public int kpc { get; set; }
public CPortData(string sid, int qty, int kpc,string tower_)
{
this.sid = sid;
this.qty = qty;
this.kpc = kpc;
this.Active = true;
this.towername = tower_;
}
public CPortData(string sid,string towr) : this(sid, 0, 0,towr) { }
public Boolean Active { get; set; }
}
}
}