123456789101112131415161718192021222324252627 |
- package com.txz.mall.service;
- import com.txz.mall.core.Service;
- import com.txz.mall.model.StorePink;
- import java.util.List;
- /**
- * Created by CodeGenerator on 2025/07/15.
- */
- public interface StorePinkService extends Service<StorePink> {
- /**
- * 查询拼团列表
- *
- * @param cid 商品id
- * @param kid 团长id 0为团长
- */
- List<StorePink> getListByCidAndKid(Long cid, Long kid);
- /**
- * 拼团成功
- */
- void pinkSuccess(Long id);
- }
|