123456789101112131415161718 |
- package com.iden.common.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.iden.common.mapper.IdenWarningEveningComeStaMapper;
- import com.iden.common.entity.IdenWarningEveningComeSta;
- import com.iden.common.service.IdenWarningEveningComeStaService;
- import org.springframework.stereotype.Service;
- /**
- * 昼伏夜出人口识别预警统计表(IdenWarningEveningComeSta)表æå¡å®ç°ç±»
- *
- * @author makejava
- * @since 2021-12-22 20:19:17
- */
- @Service
- public class IdenWarningEveningComeStaServiceImpl extends ServiceImpl<IdenWarningEveningComeStaMapper, IdenWarningEveningComeSta> implements IdenWarningEveningComeStaService {
- }
|