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();
|
}
|
|
}
|
}
|