|
|
@ -34,6 +34,7 @@
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectBPlanEnterpriseList" parameterType="BPlanEnterprise" resultType="BPlanEnterpriseResponse">
|
|
|
|
<select id="selectBPlanEnterpriseList" parameterType="BPlanEnterprise" resultType="BPlanEnterpriseResponse">
|
|
|
|
SELECT
|
|
|
|
SELECT
|
|
|
|
a.id,
|
|
|
|
a.id,
|
|
|
@ -315,4 +316,52 @@
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<insert id="insertPlan" parameterType="BPlanEnterpriseRequest" useGeneratedKeys="true" keyProperty="id">
|
|
|
|
|
|
|
|
insert into b_plan_enterprise
|
|
|
|
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
|
|
|
<if test="enterpriseId != null">enterprise_id,</if>
|
|
|
|
|
|
|
|
<if test="district != null">district,</if>
|
|
|
|
|
|
|
|
<if test="plannedYear != null">planned_year,</if>
|
|
|
|
|
|
|
|
<if test="isPoint != null">is_point,</if>
|
|
|
|
|
|
|
|
<if test="enterpriseName != null">enterprise_name,</if>
|
|
|
|
|
|
|
|
<if test="lawSort != null">law_sort,</if>
|
|
|
|
|
|
|
|
<if test="lawAreas != null">law_areas,</if>
|
|
|
|
|
|
|
|
<if test="lawLevel != null">law_level,</if>
|
|
|
|
|
|
|
|
<if test="lawHierarchy != null">law_hierarchy,</if>
|
|
|
|
|
|
|
|
<if test="plannedMonth != null">planned_month,</if>
|
|
|
|
|
|
|
|
<if test="status != null">status,</if>
|
|
|
|
|
|
|
|
<if test="createId != null">create_id,</if>
|
|
|
|
|
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
|
|
|
|
|
<if test="updateId != null">update_id,</if>
|
|
|
|
|
|
|
|
<if test="updateBy != null">update_by,</if>
|
|
|
|
|
|
|
|
<if test="updateTime != null">update_time,</if>
|
|
|
|
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
|
|
|
|
<if test="userId != null">user_id,</if>
|
|
|
|
|
|
|
|
<if test="deptId != null">dept_id,</if>
|
|
|
|
|
|
|
|
</trim>
|
|
|
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
|
|
|
<if test="enterpriseId != null">#{enterpriseId},</if>
|
|
|
|
|
|
|
|
<if test="district != null">#{district},</if>
|
|
|
|
|
|
|
|
<if test="plannedYear != null">#{plannedYear},</if>
|
|
|
|
|
|
|
|
<if test="isPoint != null">#{isPoint},</if>
|
|
|
|
|
|
|
|
<if test="enterpriseName != null">#{enterpriseName},</if>
|
|
|
|
|
|
|
|
<if test="lawSort != null">#{lawSort},</if>
|
|
|
|
|
|
|
|
<if test="lawAreas != null">#{lawAreas},</if>
|
|
|
|
|
|
|
|
<if test="lawLevel != null">#{lawLevel}, </if>
|
|
|
|
|
|
|
|
<if test="lawHierarchy != null">#{lawHierarchy},</if>
|
|
|
|
|
|
|
|
<if test="plannedMonth != null">#{plannedMonth},</if>
|
|
|
|
|
|
|
|
<if test="status != null">#{status},</if>
|
|
|
|
|
|
|
|
<if test="createId != null">create_id,</if>
|
|
|
|
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
|
|
|
|
<if test="updateId != null">#{updateId},</if>
|
|
|
|
|
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
|
|
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
|
|
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
|
|
|
|
<if test="userId != null">#{userId},</if>
|
|
|
|
|
|
|
|
<if test="deptId != null">#{deptId},</if>
|
|
|
|
|
|
|
|
</trim>
|
|
|
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|
|
|
|
</mapper>
|