jiangping
2025-06-17 78a173f85f8a4666d83cf8d900f04dd9f8e3e127
server/service/src/main/java/com/doumee/service/business/SolutionsBaseService.java
@@ -48,12 +48,16 @@
     */
    void updateById(SolutionsBase solutionsBase);
    void saveSolutionsRisk(SolutionsBase solutionsBase);
    /**
     * 批量主键更新
     *
     * @param solutionsBases 实体集
     */
    void updateByIdInBatch(List<SolutionsBase> solutionsBases);
    void updateStatus(SolutionsBase solutionsBase);
    /**
     * 主键查询
@@ -62,6 +66,7 @@
     * @return SolutionsBase
     */
    SolutionsBase findById(Integer id);
    /**
     * 条件查询单条记录
@@ -94,4 +99,7 @@
     * @return long
     */
    long count(SolutionsBase solutionsBase);
    void createSolutionBase(Integer solutionId);
}