1.增加库存记录mq处理

This commit is contained in:
2024-08-16 13:38:52 +08:00
parent d32f9705a0
commit b8a60a1549
7 changed files with 142 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
package cn.ysk.cashier.dto.rabbit;
import lombok.Data;
@Data
public class StockRecordMsg {
private Integer shopId;
private Integer skuId;
private Integer productId;
private String type;
private Integer currentNumber;
}