001package gudusoft.gsqlparser.resolver; 002 003import gudusoft.gsqlparser.TAttributeNode; 004 005public class TColumnTableMatch { 006 TAttributeNode attributeNode; 007 // 如果是可能匹配,这个属性表示匹配的可能性 {@link TBaseType#MATCH_COLUMN_RESULT_MATCHED} 008 int priority; 009 010 public TColumnTableMatch(TAttributeNode n, int p){ 011 attributeNode = n; 012 priority = p; 013 } 014 015 public TAttributeNode getAttributeNode() { 016 return attributeNode; 017 } 018 019 public int getPriority() { 020 return priority; 021 } 022}