| | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 保险方案信息表(基表)Service定义 |
| | | * 保险方案信息表Service定义 |
| | | * @author 江蹄蹄 |
| | | * @date 2024/01/15 15:07 |
| | | * @date 2024/10/28 19:16 |
| | | */ |
| | | public interface SolutionsBaseService { |
| | | |
| | |
| | | */ |
| | | void updateById(SolutionsBase solutionsBase); |
| | | |
| | | void saveSolutionsRisk(SolutionsBase solutionsBase); |
| | | /** |
| | | * 批量主键更新 |
| | | * |
| | | * @param solutionsBases 实体集 |
| | | */ |
| | | void updateByIdInBatch(List<SolutionsBase> solutionsBases); |
| | | |
| | | |
| | | void updateStatus(SolutionsBase solutionsBase); |
| | | |
| | | /** |
| | | * 主键查询 |
| | |
| | | * @return SolutionsBase |
| | | */ |
| | | SolutionsBase findById(Integer id); |
| | | |
| | | |
| | | /** |
| | | * 条件查询单条记录 |
| | |
| | | * @return long |
| | | */ |
| | | long count(SolutionsBase solutionsBase); |
| | | |
| | | |
| | | void createSolutionBase(Integer solutionId); |
| | | } |