#
vincentlu
昨天 72702f24f145781f5423edb6e52b34d72778eb0e
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();
 
}