schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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));
            }
        }
    }
}