package com.boying.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.boying.entity.WhiteListRule;
|
import com.boying.mapper.WhiteListRuleMapper;
|
import com.boying.service.WhiteListRuleService;
|
import org.springframework.stereotype.Service;
|
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName WhiteListRuleServiceImpl.java
|
* @Description TODO
|
* @createTime 2022年11月21日 11:23:00
|
*/
|
@Service
|
public class WhiteListRuleServiceImpl extends ServiceImpl<WhiteListRuleMapper, WhiteListRule> implements WhiteListRuleService {
|
}
|