前端随机立减金额获取

This commit is contained in:
张松
2025-09-17 11:32:21 +08:00
parent a0c5903aa6
commit 31e11323c6
5 changed files with 24 additions and 5 deletions

View File

@@ -38,6 +38,8 @@ public class MkShopConsumeDiscountRecord implements Serializable {
* 消费立减id
*/
private Long consumeDiscountId;
private Long orderId;
private Long shopUserId;
/**
* 减免金额

View File

@@ -10,5 +10,5 @@ import com.czg.market.entity.MkShopConsumeDiscountRecord;
* @since 2025-09-17
*/
public interface MkShopConsumeDiscountRecordService extends IService<MkShopConsumeDiscountRecord> {
MkShopConsumeDiscountRecord get(Long shopId);
MkShopConsumeDiscountRecord get(Long shopId, Long userId, Long orderId);
}