/*------------------------------------------------------------------------- * 功能描述:Wall * 作者:xulisong * 创建时间: 2019/6/25 14:55:22 * 版本号:v1.0 * -------------------------------------------------------------------------*/ using JBIM.Common; using JBIM.Definition; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JBIM.Component { [TypeDefiniton(TypeDefinition.Wall)] public class Wall : VisibleComponentObject { /// /// 墙宽 /// public double Width { get; set; } } }