jinlin
2025-03-01 86f02fee03614fef275c6e0c355d73318ca3025e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 
<mapper namespace="com.example.server.progressTrack.dao.DjJdgzShipDao">
 
    <select id="getList" resultType="com.example.server.progressTrack.model.DjJdgzShip">
        select a.*
        from dj_jdgz_ship a
        where
            a.is_delete = 0
    </select>
    <select id="getListByItem" resultType="com.example.client.dto.JComboBoxItem">
        select a.id,a.ship_no as name
        from dj_jdgz_ship a
        where
            a.is_delete = 0
    </select>
 
</mapper>