IdenWarningRuleEventCommingServiceImpl.java 711 B

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