记得上下班打卡 | git大法好,push需谨慎

Commit a4865ba1 authored by 胡佳晨's avatar 胡佳晨

修改 bug 修改快递单号

parent d31c7d27
...@@ -800,6 +800,8 @@ create table goblin_back_order ...@@ -800,6 +800,8 @@ create table goblin_back_order
pre_deposit_pay int default 0 comment '是否预存款支付[0-否|1-是]', pre_deposit_pay int default 0 comment '是否预存款支付[0-否|1-是]',
logis_company_name varchar(64) default '' comment '物流公司名称', logis_company_name varchar(64) default '' comment '物流公司名称',
mail_no varchar(64) default '' comment '物流单号', mail_no varchar(64) default '' comment '物流单号',
audit_at datetime default null comment '审核时间',
back_price_express decimal(8, 2) default 0 comment '快递退款金额',
created_at datetime, created_at datetime,
updated_at datetime, updated_at datetime,
comment text, comment text,
......
...@@ -639,7 +639,7 @@ public class GoblinStoreOrderServiceImpl implements IGoblinStoreOrderService { ...@@ -639,7 +639,7 @@ public class GoblinStoreOrderServiceImpl implements IGoblinStoreOrderService {
vo.setMailNo(mailNo); vo.setMailNo(mailNo);
vo.setMailId(mailId); vo.setMailId(mailId);
vo.setOrderId(orderId); vo.setOrderId(orderId);
redisUtils.changeGoblinMail(orderId, vo); redisUtils.changeGoblinMail(mailId, vo);
mongoUtils.updateGoblinMailVo(mailId, vo); mongoUtils.updateGoblinMailVo(mailId, vo);
//添加日志 //添加日志
queueUtils.sendMsgByRedis( queueUtils.sendMsgByRedis(
......
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