打印完善

This commit is contained in:
张松 2025-02-26 15:57:07 +08:00
parent b018b321ed
commit 0d3b9abd2e
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ public interface RedisCst {
}
static String getPrintOrderDetailKey(Long orderId) {
return PRINT_ORDER_DETAIL + orderId;
static String getPrintOrderDetailKey(Long orderId, Long detailId) {
return PRINT_ORDER_DETAIL + orderId + ":" + detailId;
}
}