nickchange
2023-11-29 d4fbea2ac7f7c98ffd83480f8f2535ca92f3baea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dsh.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
import com.dsh.course.entity.SiteLock;
import com.dsh.course.mapper.SiteLockMapper;
import com.dsh.guns.modular.system.service.ISiteLockService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2023/7/18 14:45
 */
@Service
public class SiteLockServiceImpl extends ServiceImpl<SiteLockMapper, SiteLock> implements ISiteLockService {
 
 
 
 
}