郑永安
2023-06-19 451e341df739f387201914b67323efa1c4f4c8d3
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.system.service.company.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.system.domain.company.CompanyWarning;
import com.ruoyi.system.mapper.company.CompanyWarningMapper;
import com.ruoyi.system.service.company.ICompanyWarningService;
import org.springframework.stereotype.Service;
 
 
@Service
public class CompanyWarningServiceImpl extends ServiceImpl<CompanyWarningMapper, CompanyWarning> implements ICompanyWarningService {
}