Merge remote-tracking branch 'origin/test' into test

This commit is contained in:
2025-09-26 16:54:13 +08:00
4 changed files with 69 additions and 2 deletions

View File

@@ -2,9 +2,12 @@ package com.czg.account.service;
import com.czg.account.dto.points.MemberPointsLogDTO;
import com.czg.account.entity.MemberPointsLog;
import com.czg.account.vo.PointsShopListVO;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
import java.util.List;
/**
* 会员积分变动记录
*
@@ -15,4 +18,5 @@ public interface MemberPointsLogService extends IService<MemberPointsLog> {
Page<MemberPointsLogDTO> getMemberPointsLogPage(MemberPointsLogDTO param);
}
List<PointsShopListVO> getList(long userId);
}

View File

@@ -0,0 +1,13 @@
package com.czg.account.vo;
import lombok.Data;
import lombok.experimental.Accessors;
@Data
@Accessors(chain = true)
public class PointsShopListVO {
private String shopName;
private String logo;
private Long shopId;
private Integer accountPoints;
}