提交 14618cb1 编写于 作者: sq3536's avatar sq3536

bug fix

上级 847bb3a8
......@@ -99,6 +99,7 @@ public class FieldObj {
T ret=DataObject.valueOf(type,list.get(idx));
if(ret==null)
return defaultVal;
return ret;
}
return defaultVal;
}
......
......@@ -470,6 +470,17 @@ public class ModelObj extends DataObj<String,Object> {
return null;
}
@JsonIgnore
@JSONField(serialize = false)
public Boolean isDelete()
{
if(dataModel!=null&&dataModel.getFactPorperty()!=null)
{
return getFactEntity().isDelete();
}
return false;
}
}
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册