Commit d9045e4f authored by yanzg's avatar yanzg

1.3版本修改,增加删除功能

parent 800e8f3e
......@@ -174,9 +174,9 @@ public class SqlData {
* @param sqlCond
* @return
*/
public SqlDataField getField(SqlCond sqlCond) {
public SqlDataField getField(SqlCond<?> sqlCond) {
for (SqlDataField sqlDataField : this.sqlDataFields) {
SqlCond fieldCond = sqlDataField.getCond();
SqlCond<?> fieldCond = sqlDataField.getCond();
if (fieldCond.equals(sqlCond)) {
return sqlDataField;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment