You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aucma.Scada/Aucma.Scada.Model/dto/GunBindModel.cs

32 lines
652 B
C#

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