林火综合应急信息管理系统cloud后端
guoshilong
2023-03-13 22f138ca6a2141342387be6a1aa885503ccf78a7
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.springblade.modules.dp.service.impl;
 
import org.springblade.modules.dp.mapper.FireWarningMapper;
import org.springblade.modules.dp.service.IFireWarningService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
@Service
public class FireWarningServiceImpl implements IFireWarningService {
    @Autowired
    private FireWarningMapper fireWarningMapper;
 
}