| | |
| | | department_name,order_date,order_amount, |
| | | remark,attachment |
| | | </sql> |
| | | <select id="searchListInfo" resultType="com.ruoyi.projectManagement.vo.ListInfoVo"> |
| | | <resultMap id="ListInfoVoMap" type="com.ruoyi.projectManagement.vo.ListInfoVo"> |
| | | |
| | | <result column="plan_stage" |
| | | property="planStage" |
| | | typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler"/> |
| | | |
| | | </resultMap> |
| | | <select id="searchListInfo" resultMap="ListInfoVoMap"> |
| | | select t1.*, t2.name as project_management_plan_name,t3.title as projectManagementInfoParentName |
| | | from project_management_info as t1 |
| | | left join project_management_plan as t2 on t1.project_management_plan_id = t2.id |