This commit is contained in:
雷欧(林平凡)
2024-11-15 15:50:34 +08:00
parent 3b372967d6
commit 01da4fc4fc
2 changed files with 2 additions and 2 deletions

View File

@@ -444,7 +444,7 @@ public class JDUtils {
List<OrderRow> filterOrdersByDays = filterOrdersByDate(orderRows, daysInt);
content.append("违规排行:");
content.append(daysInt).append("");
content.append(daysInt).append("").append("\r");
Map<String, Long> skuIdViolationCountMap = filterOrdersByDays.stream().filter(orderRow -> orderRow.getValidCode() == 27
|| orderRow.getValidCode() == 28

View File

@@ -97,7 +97,7 @@ public class WXUtil {
public void sendTextMessage(String wxid, String content, Integer msgType, String fromwxid) {
// 全部打印
logger.info("发送文本消息 msgType: " + msgType + " wxid: " + wxid + " fromwxid: " + fromwxid + " content: " + content);
List<String> strings = splitStringByLength(content, 500);
List<String> strings = splitStringByLength(content, 2048);
int count = 0;
for (String string : strings) {
if (count > 0) {