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
{
///
/// 夹爪列坐标实体类
///
public class GripperCoordinateForColumn : GripperCoordinate
{
private string _wellname;
///
/// 孔名称
///
public string wellname
{
get { return _wellname; }
set { _wellname = value; }
}
}
}