#
vincentlu
2025-04-21 4b81cc671814355c769e9c4c67ccb6e2ebf6321d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.acs.manager.manager.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zy.acs.manager.manager.entity.Code;
 
import java.util.List;
import java.util.Map;
 
public interface CodeMapper extends BaseMapper<Code> {
 
    Map<String, Object> selectMinAndMaxByPoint();
 
    int selectDistinctCountFromX();
 
    int selectDistinctCountFromY();
 
    List<Long> selectAllLocCode();
 
}