cjl
3 days ago 4a6be2249798d618ddb3b46c4a14504906ceb415
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.moral.api.mapper;
 
import com.moral.api.entity.HistorySecondRadar;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.moral.api.pojo.query.radar.RadarListCond;
import com.moral.api.pojo.vo.radar.HistorySecondRadarListVo;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author moral
 * @since 2026-05-14
 */
public interface HistorySecondRadarMapper extends BaseMapper<HistorySecondRadar> {
 
    List<HistorySecondRadarListVo> listRadar(@Param("cond") RadarListCond cond);
 
}