充值可用店铺列表

This commit is contained in:
张松
2025-09-28 17:57:43 +08:00
parent c34a1d1f88
commit a12b87d47e
5 changed files with 57 additions and 6 deletions

View File

@@ -2,6 +2,7 @@ package com.czg.market.service;
import com.czg.enums.ShopUserFlowBizEnum;
import com.czg.market.dto.MkShopRechargeDTO;
import com.czg.market.vo.MkShopRechargeShopListVO;
import com.czg.market.vo.MkShopRechargeVO;
import com.czg.market.vo.RechargeListVO;
import com.mybatisflex.core.service.IService;
@@ -31,4 +32,5 @@ public interface MkShopRechargeService extends IService<MkShopRecharge> {
List<RechargeListVO> getList(long loginIdAsLong);
List<MkShopRechargeShopListVO> shopList(Long shopId, String shopName);
}

View File

@@ -0,0 +1,17 @@
package com.czg.market.vo;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.List;
@Data
public class MkShopRechargeShopListVO implements Serializable {
private static final long serialVersionUID = 1L;
private String shopName;
private Long id;
private String logo;
}