using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace SiemenDevice.DevEntity
|
{
|
public class ChaiDieEntity
|
{
|
/// <summary>
|
/// 拆叠名称
|
/// </summary>
|
public string ChaiDieName { get; set; }
|
|
public int DeviceId { get; set; }
|
public int EmptyStatus { get; set; }
|
public ChaiDieEntity(string chaidieName, int deviceId)
|
{
|
|
this.ChaiDieName = chaidieName;
|
this.DeviceId = deviceId;
|
}
|
}
|
}
|