Files

22 lines
422 B
C#
Raw Permalink Normal View History

2026-08-04 18:36:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Models
{
public class unbindParam
{
/// <summary>
/// 设备编码
/// </summary>
public string equipNum { get; set; }
/// <summary>
/// 料框码
/// </summary>
public string trayCode { get; set; }
}
}