feat: 会议提交剩余时间+解冻 + 会务/劳务材料批量下载 + 多角色人员/账号模块完善
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
<result property="planCategory" column="plan_category" />
|
||||
<result property="projectForm" column="project_form" />
|
||||
<result property="designFileUrl" column="design_file_url" />
|
||||
<result property="subjectDirection" column="subject_direction" />
|
||||
<result property="status" column="status" />
|
||||
<result property="isSettled" column="is_settled" />
|
||||
<result property="projectNo" column="project_no" />
|
||||
@@ -29,7 +30,7 @@
|
||||
<sql id="selectFields">
|
||||
select p.plan_id, p.plan_name, p.plan_direction, p.plan_direction_id,
|
||||
s.title as plan_direction_title,
|
||||
p.plan_category, p.project_form, p.design_file_url, p.status, p.is_settled,
|
||||
p.plan_category, p.project_form, p.design_file_url, p.subject_direction, p.status, p.is_settled,
|
||||
p.project_no, p.remark, p.audit_opinion, p.audit_by, p.audit_time, p.submitter_id,
|
||||
COALESCE(bp.name, u.user_name) as submitter_name,
|
||||
proj.project_name as project_name,
|
||||
@@ -70,6 +71,7 @@
|
||||
<if test="planCategory != null and planCategory != ''">plan_category,</if>
|
||||
<if test="projectForm != null and projectForm != ''">project_form,</if>
|
||||
<if test="designFileUrl != null and designFileUrl != ''">design_file_url,</if>
|
||||
<if test="subjectDirection != null and subjectDirection != ''">subject_direction,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="isSettled != null and isSettled != ''">is_settled,</if>
|
||||
<if test="projectNo != null and projectNo != ''">project_no,</if>
|
||||
@@ -84,6 +86,7 @@
|
||||
<if test="planCategory != null and planCategory != ''">#{planCategory},</if>
|
||||
<if test="projectForm != null and projectForm != ''">#{projectForm},</if>
|
||||
<if test="designFileUrl != null and designFileUrl != ''">#{designFileUrl},</if>
|
||||
<if test="subjectDirection != null and subjectDirection != ''">#{subjectDirection},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="isSettled != null and isSettled != ''">#{isSettled},</if>
|
||||
<if test="projectNo != null and projectNo != ''">#{projectNo},</if>
|
||||
@@ -100,6 +103,7 @@
|
||||
<if test="planCategory != null and planCategory != ''">plan_category = #{planCategory},</if>
|
||||
<if test="projectForm != null and projectForm != ''">project_form = #{projectForm},</if>
|
||||
<if test="designFileUrl != null and designFileUrl != ''">design_file_url = #{designFileUrl},</if>
|
||||
<if test="subjectDirection != null and subjectDirection != ''">subject_direction = #{subjectDirection},</if>
|
||||
<if test="isSettled != null and isSettled != ''">is_settled = #{isSettled},</if>
|
||||
<if test="projectNo != null and projectNo != ''">project_no = #{projectNo},</if>
|
||||
<if test="auditOpinion != null and auditOpinion != ''">audit_opinion = #{auditOpinion},</if>
|
||||
|
||||
Reference in New Issue
Block a user