using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using DataEntity;
|
using XImagingXhandler.XDAL;
|
|
namespace DataEntity
|
{
|
/// <summary>
|
/// 夹爪列坐标实体类
|
/// </summary>
|
public class GripperCoordinateForColumn : GripperCoordinate
|
{
|
private string _wellname;
|
/// <summary>
|
/// 孔名称
|
/// </summary>
|
public string wellname
|
{
|
get { return _wellname; }
|
set { _wellname = value; }
|
}
|
}
|
}
|