Commit c314aced by xugaojun

修复一个线上bug,说明字典Bug

parent 0e138093
......@@ -52,7 +52,11 @@ public class DictController extends WebBaseController {
// 默认7
day = 7;
} else {
day = orderSetting.getData().getAfterSaleTime();
if (Objects.isNull(orderSetting.getData().getAfterSaleTime())) {
day = 7;
} else {
day = orderSetting.getData().getAfterSaleTime();
}
}
DictDTO dictDTO = new DictDTO();
dictDTO.setDictName("提现说明");
......
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