123456789101112131415161718 |
- package com.iden.common.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.iden.common.mapper.IdenWarningRuleEventCommingMapper;
- import com.iden.common.entity.IdenWarningRuleEventComming;
- import com.iden.common.service.IdenWarningRuleEventCommingService;
- import org.springframework.stereotype.Service;
- /**
- * 昼伏夜出人口识别预警规则表(IdenWarningRuleEventComming)表æå¡å®ç°ç±»
- *
- * @author makejava
- * @since 2021-12-30 22:29:49
- */
- @Service
- public class IdenWarningRuleEventCommingServiceImpl extends ServiceImpl<IdenWarningRuleEventCommingMapper, IdenWarningRuleEventComming> implements IdenWarningRuleEventCommingService {
- }
|