主要改动: - SQL: biz_support_unit → biz_org, 加 org_type, 加 business_nature; 删 biz_execution_unit, biz_service_org - SQL: biz_project.support_unit_id/name + service_org_id/name → org_id/name/type - SQL: biz_meeting.support_unit_name → org_name - SQL: biz_person.work_unit → org_id (FK) - 后端: 新 BizOrg entity/mapper/service/controller - 后端: BizProject/BizMeeting 字段重命名 - 后端: 删 12 个 BizSupportUnit/BizExecutionUnit/BizServiceOrg Java 文件 - 后端: BizPersonImportVO.workUnit → orgName (导入时查 biz_org 取 org_id) - 后端: BizAuthController.registerExecutor 完整实现 (原 registerSupplier stub) - 前端: 新 admin/Orgs.vue + manager/Orgs.vue (原 SupportUnits) - 前端: RegisterExecutor.vue (原 RegisterSupplier, 单页 2 步) - 前端: sponsor/executor/manager 多个文件 workUnit → orgId/orgName 重命名 - 前端: 统一 supplier → executor, 业务命名 sponsor(赞助方) / executor(执行方=供应商) - 前端: 全工程 execution → executor (company type / role / person unit_type)
100 lines
4.0 KiB
XML
100 lines
4.0 KiB
XML
<?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.ruoyi.quartz.mapper.SysJobLogMapper">
|
|
|
|
<resultMap type="SysJobLog" id="SysJobLogResult">
|
|
<id property="jobLogId" column="job_log_id" />
|
|
<result property="jobName" column="job_name" />
|
|
<result property="jobGroup" column="job_group" />
|
|
<result property="invokeTarget" column="invoke_target" />
|
|
<result property="jobMessage" column="job_message" />
|
|
<result property="status" column="status" />
|
|
<result property="exceptionInfo" column="exception_info" />
|
|
<result property="startTime" column="start_time" />
|
|
<result property="endTime" column="end_time" />
|
|
<result property="createTime" column="create_time" />
|
|
</resultMap>
|
|
|
|
<sql id="selectJobLogVo">
|
|
select job_log_id, job_name, job_group, invoke_target, job_message, status, exception_info, start_time, end_time, create_time
|
|
from sys_job_log
|
|
</sql>
|
|
|
|
<select id="selectJobLogList" parameterType="SysJobLog" resultMap="SysJobLogResult">
|
|
<include refid="selectJobLogVo"/>
|
|
<where>
|
|
<if test="jobName != null and jobName != ''">
|
|
AND job_name like concat('%', #{jobName}, '%')
|
|
</if>
|
|
<if test="jobGroup != null and jobGroup != ''">
|
|
AND job_group = #{jobGroup}
|
|
</if>
|
|
<if test="status != null and status != ''">
|
|
AND status = #{status}
|
|
</if>
|
|
<if test="invokeTarget != null and invokeTarget != ''">
|
|
AND invoke_target like concat('%', #{invokeTarget}, '%')
|
|
</if>
|
|
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
|
|
and date_format(create_time,'%Y%m%d') >= date_format(#{params.beginTime},'%Y%m%d')
|
|
</if>
|
|
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
|
|
and date_format(create_time,'%Y%m%d') <= date_format(#{params.endTime},'%Y%m%d')
|
|
</if>
|
|
</where>
|
|
order by create_time desc
|
|
</select>
|
|
|
|
<select id="selectJobLogAll" resultMap="SysJobLogResult">
|
|
<include refid="selectJobLogVo"/>
|
|
</select>
|
|
|
|
<select id="selectJobLogById" parameterType="Long" resultMap="SysJobLogResult">
|
|
<include refid="selectJobLogVo"/>
|
|
where job_log_id = #{jobLogId}
|
|
</select>
|
|
|
|
<delete id="deleteJobLogById" parameterType="Long">
|
|
delete from sys_job_log where job_log_id = #{jobLogId}
|
|
</delete>
|
|
|
|
<delete id="deleteJobLogByIds" parameterType="Long">
|
|
delete from sys_job_log where job_log_id in
|
|
<foreach collection="array" item="jobLogId" open="(" separator="," close=")">
|
|
#{jobLogId}
|
|
</foreach>
|
|
</delete>
|
|
|
|
<update id="cleanJobLog">
|
|
truncate table sys_job_log
|
|
</update>
|
|
|
|
<insert id="insertJobLog" parameterType="SysJobLog">
|
|
insert into sys_job_log(
|
|
<if test="jobLogId != null and jobLogId != 0">job_log_id,</if>
|
|
<if test="jobName != null and jobName != ''">job_name,</if>
|
|
<if test="jobGroup != null and jobGroup != ''">job_group,</if>
|
|
<if test="invokeTarget != null and invokeTarget != ''">invoke_target,</if>
|
|
<if test="jobMessage != null and jobMessage != ''">job_message,</if>
|
|
<if test="status != null and status != ''">status,</if>
|
|
<if test="exceptionInfo != null and exceptionInfo != ''">exception_info,</if>
|
|
<if test="startTime != null">start_time,</if>
|
|
<if test="endTime != null">end_time,</if>
|
|
create_time
|
|
)values(
|
|
<if test="jobLogId != null and jobLogId != 0">#{jobLogId},</if>
|
|
<if test="jobName != null and jobName != ''">#{jobName},</if>
|
|
<if test="jobGroup != null and jobGroup != ''">#{jobGroup},</if>
|
|
<if test="invokeTarget != null and invokeTarget != ''">#{invokeTarget},</if>
|
|
<if test="jobMessage != null and jobMessage != ''">#{jobMessage},</if>
|
|
<if test="status != null and status != ''">#{status},</if>
|
|
<if test="exceptionInfo != null and exceptionInfo != ''">#{exceptionInfo},</if>
|
|
<if test="startTime != null">#{startTime},</if>
|
|
<if test="endTime != null">#{endTime},</if>
|
|
sysdate()
|
|
)
|
|
</insert>
|
|
|
|
</mapper> |