lixiaojun
2023-04-12 fc6b7c9852f18e42fb9bccaf0cc22fbe5389d179
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Entity
{
    /// <summary>
    /// 对象地图信息
    /// </summary>
    [SugarTable("object_map_info")]
    public class ObjectMapInfo : CorpEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public ObjectMapInfo() { }
 
        /// <summary>
        /// 
        /// </summary>
        public ObjectMapInfo(ObjectMapInfo rhs) : base(rhs)
        {
            this.ObjectType = rhs.ObjectType;
            this.SubType = rhs.SubType;
            this.ObjectID = rhs.ObjectID;
            this.ObjectName = rhs.ObjectName;
            this.Purpose = rhs.Purpose;
            this.Kind = rhs.Kind;
            this.Shape = rhs.Shape;
            this.Position = rhs.Position;
        }
 
        /// <summary>
        /// 对象类型
        /// </summary>    
        public string ObjectType
        {
            get { return _objecttype; }
            set { _objecttype = value; }
        }
        private string _objecttype;
 
        /// <summary>
        /// 子类型
        /// </summary>    
        public string SubType
        {
            get { return _subtype; }
            set { _subtype = value; }
        }
        private string _subtype;
 
        /// <summary>
        /// 对象标识
        /// </summary>    
        public long ObjectID
        {
            get { return _objectid; }
            set { _objectid = value; }
        }
        private long _objectid;
 
        /// <summary>
        /// 对象名称
        /// </summary>    
        public string ObjectName
        {
            get { return _objectname; }
            set { _objectname = value; }
        }
        private string _objectname;
 
        /// <summary>
        /// 目的
        /// </summary>    
        public string Purpose
        {
            get { return _purpose; }
            set { _purpose = value; }
        }
        private string _purpose;
 
        /// <summary>
        /// 地图种类
        /// </summary>    
        public string Kind
        {
            get { return _kind; }
            set { _kind = value; }
        }
        private string _kind;
 
        /// <summary>
        /// 地图形状
        /// </summary>    
        public string Shape
        {
            get { return _shape; }
            set { _shape = value; }
        }
        private string _shape;
 
        /// <summary>
        /// 地图位置
        /// </summary>    
        public string Position
        {
            get { return _position; }
            set { _position = value; }
        }
        private string _position;
 
        /// <summary>
        /// 
        /// </summary>
        public ObjectMapInfo Clone()
        {
            return (ObjectMapInfo)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
 
    }
}