积分商品问题

This commit is contained in:
2025-12-10 15:03:05 +08:00
parent 1d896d30ef
commit 2cfe13cd99
5 changed files with 25 additions and 13 deletions

View File

@@ -6,6 +6,7 @@ import lombok.experimental.Accessors;
@Data
@Accessors(chain = true)
public class PointsShopListVO {
private Long id;
private String shopName;
private String logo;
private String coverImg;

View File

@@ -7,6 +7,8 @@ import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
import com.czg.market.entity.MkPointsGoods;
import java.util.Map;
/**
* 积分商品设置 服务层。
*
@@ -17,7 +19,7 @@ public interface MkPointsGoodsService extends IService<MkPointsGoods> {
Page<MkPointsGoods> getPointsGoodsPage(BaseQueryParam param, Long shopId);
Page<MkPointsGoods> getPointsGoodsPageByUser(Integer page, Integer size, Long shopId, String goodsCategory, Long userId);
Map<String, Object> getPointsGoodsPageByUser(Integer page, Integer size, Long shopId, String goodsCategory, Long userId);
Page<MkPointsGoodsRecord> getGoodsRecordPage(Integer page, Integer size, Long shopId, Long userId);