using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataEntity { /// /// 台面模板板位关联夹爪坐标类 /// public class TabletopRelGripper:IEntity { private string _tabletopid { get; set; } = ""; /// /// 模板Id /// [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; /// /// 台面板位关联夹爪Id /// [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)); } } } }