You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
585 B
14 lines
585 B
<?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.ccsens.ptccsens.persist.dao.PluDailyAccountProDao">
|
|
<select id="selectProjects" resultType="com.ccsens.ptccsens.bean.vo.DailyAccountVo$DailyAccountPro">
|
|
SELECT
|
|
id,project_name,project_short_name,project_no,project_manager_name,sequence
|
|
FROM
|
|
t_plu_daily_account_pro
|
|
WHERE
|
|
rec_status = 0
|
|
ORDER BY
|
|
sequence asc
|
|
</select>
|
|
</mapper>
|