IdenWarningEveningComeStaServiceImpl.java 695 B

123456789101112131415161718
  1. package com.iden.common.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.iden.common.mapper.IdenWarningEveningComeStaMapper;
  4. import com.iden.common.entity.IdenWarningEveningComeSta;
  5. import com.iden.common.service.IdenWarningEveningComeStaService;
  6. import org.springframework.stereotype.Service;
  7. /**
  8. * 昼伏夜出人口识别预警统计表(IdenWarningEveningComeSta)表服务实现类
  9. *
  10. * @author makejava
  11. * @since 2021-12-22 20:19:17
  12. */
  13. @Service
  14. public class IdenWarningEveningComeStaServiceImpl extends ServiceImpl<IdenWarningEveningComeStaMapper, IdenWarningEveningComeSta> implements IdenWarningEveningComeStaService {
  15. }