kongdeqiang
2 天以前 199202813dd8ca536ed2334f5eeb6aba3ad25b21
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 {
}