像这种结构的xml用序列化的话要怎么写类的结构呢?

 <TCH_COLUMN name="柱" comment="天正对象名称">
                    <Object_ID name="对象编号" comment="当前对象的句柄">2000</Object_ID>
                    <Link_WALL name="连接墙体"></Link_WALL>
                    <Property name="截面特性" comment="截面特性包括矩形到异形柱等8类">异形柱
                        <Material name="柱材料" comment="柱子使用的材料">钢筋混凝土</Material>
                        <Baseline name="基线参数" comment="用于矩形柱和异形柱">
                            <Point_1 name="第1点">1734589.494469,-110372.289777,0.000000</Point_1>
                            <Ang_1 name="圆心角1">0.000000</Ang_1>
                            <Point_2 name="第2点">1734349.494469,-110372.289777,0.000000</Point_2>
                            <Ang_2 name="圆心角2">0.000000</Ang_2>
                            <Point_3 name="第3点">1734349.494469,-110576.094104,0.000000</Point_3>
                            <Ang_3 name="圆心角3">0.000000</Ang_3>
                            <Point_4 name="第4点">1734589.494469,-110576.094104,0.000000</Point_4>
                            <Ang_4 name="圆心角4">0.000000</Ang_4>
                        </Baseline>
                    </Property>
                    <Height name="高度参数">
                        <Net_height name="柱高" comment="从柱底起算的柱高">3000.000000</Net_height>
                        <Bottom_height name="底标高" comment="柱底的相对标高">0.000000</Bottom_height>
                    </Height>
                    <Angle name="转角">0.000000</Angle>
                </TCH_COLUMN>

这是啥语言的呀, 没看懂

对于xml,你最好用xpath等树形结构来处理,它就是每个节点对应一个树节点,然后子节点对应类的子元素。