1
0

feat: 增加股票集相关服务

This commit is contained in:
2025-09-08 23:12:21 +08:00
parent 1ad5b10e20
commit 388456ff24
7 changed files with 146 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
package com.lanyuanxiaoyao.leopard.core.repository;
import com.lanyuanxiaoyao.leopard.core.entity.StockCollection;
import com.lanyuanxiaoyao.service.template.repository.SimpleRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface StockCollectionRepository extends SimpleRepository<StockCollection> {
}