公告板
版本库
filestore
活动
搜索
登录
main
/
progressTrack
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
init
jinlin
2025-03-01
86f02fee03614fef275c6e0c355d73318ca3025e
[progressTrack.git]
/
src
/
main
/
resources
/
mapper
/
cabin
/
CabinDao.xml
1
2
3
4
5
6
7
8
9
10
11
<?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.cabin.dao.CabinDao">
<select id="getList" resultType="com.example.client.dto.JComboBoxItem">
select id, name
from cabin
where is_delete = 0
</select>
</mapper>