liujie
2023-09-16 6b9e39445a8e56ab0d8195663f1aa6e3c49d6836
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dsh.other.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.other.entity.SiteLock;
import com.dsh.other.model.dto.siteDto.TSiteLockDTO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2023/7/18 14:43
 */
public interface SiteLockMapper extends BaseMapper<SiteLock> {
    List<TSiteLockDTO> getListById(@Param("id") Integer id);
}