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);
|
}
|