提交 48e8d29e 编写于 作者: O o2sword

修复流程数据发布到数据表布尔字段未映射的问题

上级 96aa38a1
......@@ -461,7 +461,9 @@ abstract class BaseAction extends StandardJaxrsAction {
if (null != jsonElement) {
if (jsonElement.isJsonPrimitive()) {
JsonPrimitive jsonPrimitive = jsonElement.getAsJsonPrimitive();
if (jsonPrimitive.isNumber()) {
if (jsonPrimitive.isBoolean()) {
value = jsonPrimitive.getAsBoolean();
}else if (jsonPrimitive.isNumber()) {
value = jsonPrimitive.getAsBoolean();
}
} else if (jsonElement.isJsonArray()) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册