2024-07-08 17:47:02 +08:00
|
|
|
package com.gunshi.project.xyt.mapper;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
2024-07-10 16:08:13 +08:00
|
|
|
import com.gunshi.project.xyt.entity.vo.HomeShpPlacementVo;
|
2024-07-08 17:47:02 +08:00
|
|
|
import com.gunshi.project.xyt.model.ShpPlacement;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
2024-07-10 16:08:13 +08:00
|
|
|
import org.apache.ibatis.annotations.Select;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
2024-07-08 17:47:02 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 描述: 安置点
|
|
|
|
|
* author: xusan
|
|
|
|
|
* date: 2024-07-08 15:44:08
|
|
|
|
|
*/
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface ShpPlacementMapper extends BaseMapper<ShpPlacement> {
|
|
|
|
|
|
2024-07-10 16:08:13 +08:00
|
|
|
@Select("""
|
|
|
|
|
<script>
|
|
|
|
|
SELECT st.*,r.adnm FROM shp_placement st
|
|
|
|
|
LEFT JOIN st_addvcd_d r ON st.adcd = r.adcd
|
|
|
|
|
</script>
|
|
|
|
|
""")
|
|
|
|
|
List<HomeShpPlacementVo> getDetailsAndMonitoringDataList();
|
2024-07-08 17:47:02 +08:00
|
|
|
}
|