using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace DataEntity
|
{
|
/// <summary>
|
/// 台面模板板位关联夹爪坐标类
|
/// </summary>
|
public class TabletopRelGripper:IEntity
|
{
|
private string _tabletopid { get; set; } = "";
|
/// <summary>
|
/// 模板Id
|
/// </summary>
|
[SugarColumn(ColumnName = "tabletopid", IsPrimaryKey = true)]
|
[Description("模板Id")]
|
public string tabletopid
|
{
|
get { return _tabletopid; }
|
set
|
{
|
if (tabletopid == value) return;
|
_tabletopid = value;
|
OnPropertyChanged(nameof(tabletopid));
|
}
|
}
|
|
|
private int _gripper_lattice_id { get; set; } = 0;
|
/// <summary>
|
/// 台面板位关联夹爪Id
|
/// </summary>
|
[SugarColumn(ColumnName = "gripper_lattice_id")]
|
[Description("台面板位关联夹爪Id")]
|
public int gripper_lattice_id
|
{
|
get { return _gripper_lattice_id; }
|
set
|
{
|
if (gripper_lattice_id == value) return;
|
_gripper_lattice_id = value;
|
OnPropertyChanged(nameof(gripper_lattice_id));
|
}
|
}
|
}
|
}
|