k94314517
2025-07-04 50fb58286ed3b718c39a97e0987ee7561a295651
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/16 10:03
 * @date 2024/10/28 19:16
 */
public interface SolutionsBaseService {
@@ -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);
}