k94314517
2025-05-19 cdd6551b190b981b807a3b95e9635c559ccc769d
server/service/src/main/java/com/doumee/service/business/SolutionsBaseService.java
@@ -6,9 +6,9 @@
import java.util.List;
/**
 * 保险方案信息表(基表)Service定义
 * 保险方案信息表Service定义
 * @author 江蹄蹄
 * @date 2024/01/15 15:07
 * @date 2024/10/28 19:16
 */
public interface SolutionsBaseService {
@@ -55,6 +55,9 @@
     */
    void updateByIdInBatch(List<SolutionsBase> solutionsBases);
    void updateStatus(SolutionsBase solutionsBase);
    /**
     * 主键查询
     *
@@ -62,6 +65,7 @@
     * @return SolutionsBase
     */
    SolutionsBase findById(Integer id);
    /**
     * 条件查询单条记录
@@ -94,4 +98,7 @@
     * @return long
     */
    long count(SolutionsBase solutionsBase);
    void createSolutionBase(Integer solutionId);
}