using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Scada.Model.dto
{
///
/// 箱体绑定模型,供扫码枪绑定箱体使用
///
public class GunBindModel
{
///
/// 串口号
///
public string Port { get; set; }
///
/// 箱体码
///
public string ShellCode { get; set; }
///
/// 内胆码
///
public string LinerCode { get; set; }
}
}