namespace WIDESEA_WCS.WCSClient
{
public class DBItemGroup
{
///
/// 名称/描述
///
public string ItemName { get; set; }
///
/// DB地址(DB块+.+偏移量)
///
public string ItemAddress { get; set; }
///
/// 数据类型(dint/int/string/bool)
///
public string ItemDataType { get; set; }
///
/// 所属操作类型
///
public string ItemOperatorType { get; set; }
///
/// 设备编号
///
public string EquipNum { get; set; }
///
/// 说明
///
public string Remark { get; set; }
}
}