• wangxl's avatar
    111 · 7dd1f1d9
    wangxl authored
    7dd1f1d9
ComProjectResearchDAO.xml 794 Bytes
<?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.yiboshi.science.dao.ComProjectResearchDAO">
    <sql id="allColumns">
        t.id as id, t.proj_id as projId, t.proj_no as projNo, t.proj_name as projName, t.approve_unit as approveUnit, t.head_name as headName, t.age_limit as ageLimit, t.funding as funding, 
        t.relation as relation
    </sql>
    <select id="getListByObjectId" parameterType="java.lang.String" resultType="com.yiboshi.science.param.dto.ComProjectResearchDTO">
        SELECT a.*
        FROM com_project_research a
        where object_id=#{objectId} order by a.show_index asc
    </select>
</mapper>