using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.Basic
{
///
/// 缓存点分组数据传输对象
///
public class CachePointGroupDTO
{
///
/// 点A的ID
///
public int IdA { get; set; }
///
/// 点B的ID
///
public int IdB { get; set; }
///
/// 点A的编码
///
public string PointCodeA { get; set; }
///
/// 点B的编码
///
public string PointCodeB { get; set; }
///
/// 点A的类型
///
public int PointTypeA { get; set; }
///
/// 点B的类型
///
public int PointTypeB { get; set; }
///
/// 点A的状态
///
public int PointStatusA { get; set; }
///
/// 点B的状态
///
public int PointStatusB { get; set; }
///
/// 点A的深度
///
public int DepthA { get; set; }
///
/// 点B的深度
///
public int DepthB { get; set; }
///
/// 点A的启用状态
///
public int EnableStatusA { get; set; }
///
/// 点B的启用状态
///
public int EnableStatusB { get; set; }
}
}