添加活动列表

This commit is contained in:
韩鹏辉
2024-05-22 11:43:02 +08:00
parent e25935624e
commit 000bf44a63
5 changed files with 40 additions and 18 deletions

View File

@@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
import java.math.BigDecimal;
import java.util.List;
@Component
@Mapper
@@ -23,4 +24,6 @@ public interface TbActivateMapper {
int updateByPrimaryKey(TbActivate record);
TbActivate selectByAmount(@Param("shopId") String shopId,@Param("amount") BigDecimal amount);
List<TbActivate> selectByShpopId(String shopId);
}