@@ -142,6 +142,7 @@ public class AitagTagLogServiceImpl extends ServiceImpl<AitagTagLogDao, AitagTag
}
private String getTagPath(String result) {
+ result = result.replace("\\", "");
List<Map> results = JSONArray.parseArray(result, Map.class);
if(results == null){
return "";
@@ -57,7 +57,7 @@
AND #{categoryCode} = category_code
</if>
</where>
- GROUP BY DATE(insert_time)
+ GROUP BY DATE_FORMAT(insert_time, '%Y年%m月%d日')
ORDER BY stat;
</select>
@@ -77,7 +77,7 @@
- GROUP BY DATE_FORMAT(insert_time, '%Y-%m')
+ GROUP BY DATE_FORMAT(insert_time, '%Y年%m月')