using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Ant.ORM
{
    public class JoinOnTable
    {

        protected JionNodeCollection _nodes;
        /// <summary>
        /// 节点
        /// </summary>
        public JionNodeCollection Nodes
        {
            get
            {
                if (_nodes == null)
                {
                    _nodes = new JionNodeCollection();
                }
                return _nodes;
            }

        }
        // <summary>
        /// 主表
        /// </summary>
        public string TableName;

        /// <summary>
        /// 主表别名
        /// </summary>
        public string TableAsName;
    }
}