jihs 4 years ago
parent
commit
51dce6715d

+ 1 - 1
src/main/java/org/jeecg/modules/prowork/service/impl/ProWorkLogicServiceImpl.java

@@ -100,7 +100,7 @@ public class ProWorkLogicServiceImpl extends ServiceImpl<ProWorkLogicMapper, Pro
         QueryWrapper<ProWorkLogicContent> queryWrapper = new QueryWrapper();
         queryWrapper.eq("del_flag", "0");
         queryWrapper.eq("logic_id", id);
-        queryWrapper.orderByAsc("createTime");
+        queryWrapper.orderByAsc("create_time");
         List<ProWorkLogicContent> list = proWorkLogicContentService.list(queryWrapper);
         List<ProWorkLogicContentListRespDTO> contentListRespDTOS = Lists.newArrayList();
         for(ProWorkLogicContent proWorkLogicContent : list){