using HH.WCS.Hexafluo.util;
using HH.WCS.Hexafluo.wms;
namespace HH.WCS.ZCQTJ.Entitys
{
[ST("立库安全请求记录表")]
public class TN_NdcSignEntitys : BaseModel
{
///
/// 任务号
///
public string TaskNo { get; set; }
///
/// 信号
///
public int Sign { get; set; }
}
[ST("通讯模式配置表")]
public class TN_TcpCont : BaseModel
{
///
/// 货位编码
///
public string LocationCode { get; set; }
///
/// 无线通讯方式
/// 1.MODBUS
///
public string CtiaMode { get; set; }
///
/// ip地址
///
public string host { get; set; }
///
/// 写入目标设备的IP端口
///
public int port { get; set; }
///
/// 通道--写
///
public int addr { get; set; }
///
/// 写入的数据
///
public int dataNum { get; set; }
///
/// 适用场景
///
public int AccessMode { get; set; }
///
/// 需要读取的通道 多个通道则用,隔开
///
public int Seleaddr { get; set; }
///
/// 需要查询的通道的值
///
public int SeledataNum { get; set; }
///
/// 是否RFID验证
///
public string C_IS_RFID { get; set; }
}
}