public QueryCondition(ConFiledHBCallRecord field, string value, ConditionHB condition, RelationshipHB relationship)
 {
     this.field        = field;
     this.value        = value;
     this.condition    = condition;
     this.relationship = relationship;
 }
 public QueryCondition()
 {
     field        = ConFiledHBCallRecord.CallID;
     condition    = ConditionHB.Equal;
     relationship = RelationshipHB.AND;
 }