1
dd
2025-10-26 490a9492607f14414c07f9eed97c7ffffc748703
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.im.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.im.service.InsuranceProductService;
import com.ruoyi.system.domain.InsuranceProduct;
import com.ruoyi.system.mapper.InsuranceProductMapper;
import org.springframework.stereotype.Service;
 
@Service
public class InsuranceProductServiceImpl extends ServiceImpl<InsuranceProductMapper, InsuranceProduct> implements InsuranceProductService {
}