|
@@ -2,6 +2,7 @@ package com.zhongzheng.modules.order.service.impl;
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
import com.zhongzheng.common.utils.DateUtils;
|
|
|
import com.zhongzheng.modules.bank.mapper.QuestionMapper;
|
|
|
import com.zhongzheng.modules.order.bo.OrderGoodsAddBo;
|
|
@@ -96,6 +97,7 @@ public class OrderGoodsServiceImpl extends ServiceImpl<OrderGoodsMapper, OrderGo
|
|
|
OrderGoods update = BeanUtil.toBean(bo, OrderGoods.class);
|
|
|
validEntityBeforeSave(update);
|
|
|
update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ update.setGoodsInputData(JSON.toJSONString(bo.getGoodsInputData()));
|
|
|
return this.updateById(update);
|
|
|
}
|
|
|
|