还原误删除代码

This commit is contained in:
liangdaliang
2025-02-21 15:52:48 +08:00
parent d27e4c2157
commit 84ea3ce92c
6 changed files with 325 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
package com.test.test.domain;
import com.test.common.annotation.Excel;
import com.test.common.core.domain.BaseEntity;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
/**
* 自动化测试对象 test_task
*
* @author liangdl
* @date 2025-02-21
*/
@Setter
@Getter
@ToString
public class TestTask extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 任务id */
private Long id;
/** 任务名称 */
@Excel(name = "任务名称")
private String name;
/** 节点id */
@Excel(name = "节点id")
private Long groupId;
/** 项目id */
@Excel(name = "项目id")
private Long projectId;
/** crontab表达式 */
@Excel(name = "crontab表达式")
private String crontab;
/** 定时任务开关 */
@Excel(name = "定时任务开关")
private Integer status;
/** 失败重试开关 */
@Excel(name = "失败重试开关")
private Integer retry;
/** 失败重试次数 */
@Excel(name = "失败重试次数")
private Long retryCount;
/** 并行开关 */
@Excel(name = "并行开关")
private Integer async;
/** 删除标志0代表存在 2代表删除 */
private String delFlag;
}

View File

@@ -0,0 +1,10 @@
package com.test.test.domain.qo;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
@Data
public class GroupIdQO {
@NotNull(message = "父节点id不能为空")
private Long groupId;
}

View File

@@ -0,0 +1,41 @@
package com.test.test.mapper;
import com.test.test.domain.TestTask;
import com.test.test.domain.qo.GroupIdQO;
import java.util.List;
/**
* 自动化测试Mapper接口
*/
public interface TestTaskMapper {
/**
* 查询自动化测试
*/
TestTask selectTestTaskById(Long id);
/**
* 查询自动化测试列表
*/
List<TestTask> selectTestTaskList(GroupIdQO testTask);
/**
* 新增自动化测试
*/
int insertTestTask(TestTask testTask);
/**
* 修改自动化测试
*/
int updateTestTask(TestTask testTask);
/**
* 删除自动化测试
*/
int deleteTestTaskById(Long id);
/**
* 批量删除自动化测试
*/
int deleteTestTaskByIds(Long[] ids);
}

View File

@@ -0,0 +1,40 @@
package com.test.test.service;
import java.util.List;
import com.test.test.domain.TestTask;
import com.test.test.domain.qo.GroupIdQO;
/**
* 自动化测试Service接口
*/
public interface ITestTaskService {
/**
* 查询自动化测试
*/
TestTask selectTestTaskById(Long id);
/**
* 查询自动化测试列表
*/
List<TestTask> selectTestTaskList(GroupIdQO testTask);
/**
* 新增自动化测试
*/
int insertTestTask(TestTask testTask);
/**
* 修改自动化测试
*/
int updateTestTask(TestTask testTask);
/**
* 批量删除自动化测试
*/
int deleteTestTaskByIds(Long[] ids);
/**
* 删除自动化测试信息
*/
int deleteTestTaskById(Long id);
}

View File

@@ -0,0 +1,70 @@
package com.test.test.service.impl;
import com.test.common.utils.DateUtils;
import com.test.test.domain.TestTask;
import com.test.test.domain.qo.GroupIdQO;
import com.test.test.mapper.TestTaskMapper;
import com.test.test.service.ITestTaskService;
import jakarta.annotation.Resource;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* 自动化测试Service业务层处理
*/
@Service
public class TestTaskServiceImpl implements ITestTaskService {
@Resource
private TestTaskMapper testTaskMapper;
/**
* 查询自动化测试
*/
@Override
public TestTask selectTestTaskById(Long id) {
return testTaskMapper.selectTestTaskById(id);
}
/**
* 查询自动化测试列表
*/
@Override
public List<TestTask> selectTestTaskList(GroupIdQO qo) {
return testTaskMapper.selectTestTaskList(qo);
}
/**
* 新增自动化测试
*/
@Override
public int insertTestTask(TestTask testTask) {
return testTaskMapper.insertTestTask(testTask);
}
/**
* 修改自动化测试
*/
@Override
public int updateTestTask(TestTask testTask) {
testTask.setUpdateTime(DateUtils.getNowDate());
return testTaskMapper.updateTestTask(testTask);
}
/**
* 批量删除自动化测试
*/
@Override
public int deleteTestTaskByIds(Long[] ids) {
return testTaskMapper.deleteTestTaskByIds(ids);
}
/**
* 删除自动化测试信息
*/
@Override
public int deleteTestTaskById(Long id) {
return testTaskMapper.deleteTestTaskById(id);
}
}

View File

@@ -0,0 +1,105 @@
<?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.test.test.mapper.TestTaskMapper">
<resultMap type="TestTask" id="TestTaskResult">
<result property="id" column="id" />
<result property="name" column="name" />
<result property="groupId" column="group_id" />
<result property="projectId" column="project_id" />
<result property="crontab" column="crontab" />
<result property="status" column="status" />
<result property="retry" column="retry" />
<result property="retryCount" column="retry_count" />
<result property="async" column="async" />
<result property="delFlag" column="del_flag" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
</resultMap>
<sql id="selectTestTaskVo">
select id, name, group_id, project_id, crontab, status, retry, retry_count, async, del_flag, create_by, create_time, update_by, update_time from test_task
</sql>
<select id="selectTestTaskList" parameterType="GroupIdQO" resultMap="TestTaskResult">
<include refid="selectTestTaskVo"/>
<where>
group_id = #{groupId}
</where>
order by create_time desc
</select>
<select id="selectTestTaskById" parameterType="Long" resultMap="TestTaskResult">
<include refid="selectTestTaskVo"/>
where id = #{id}
</select>
<insert id="insertTestTask" parameterType="TestTask" useGeneratedKeys="true" keyProperty="id">
insert into test_task
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="name != null">name,</if>
<if test="groupId != null">group_id,</if>
<if test="projectId != null">project_id,</if>
<if test="crontab != null">crontab,</if>
<if test="status != null">status,</if>
<if test="retry != null">retry,</if>
<if test="retryCount != null">retry_count,</if>
<if test="async != null">async,</if>
<if test="delFlag != null">del_flag,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="name != null">#{name},</if>
<if test="groupId != null">#{groupId},</if>
<if test="projectId != null">#{projectId},</if>
<if test="crontab != null">#{crontab},</if>
<if test="status != null">#{status},</if>
<if test="retry != null">#{retry},</if>
<if test="retryCount != null">#{retryCount},</if>
<if test="async != null">#{async},</if>
<if test="delFlag != null">#{delFlag},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateTestTask" parameterType="TestTask">
update test_task
<trim prefix="SET" suffixOverrides=",">
<if test="name != null">name = #{name},</if>
<if test="groupId != null">group_id = #{groupId},</if>
<if test="projectId != null">project_id = #{projectId},</if>
<if test="crontab != null">crontab = #{crontab},</if>
<if test="status != null">status = #{status},</if>
<if test="retry != null">retry = #{retry},</if>
<if test="retryCount != null">retry_count = #{retryCount},</if>
<if test="async != null">async = #{async},</if>
<if test="delFlag != null">del_flag = #{delFlag},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteTestTaskById" parameterType="Long">
delete from test_task where id = #{id}
</delete>
<delete id="deleteTestTaskByIds" parameterType="String">
delete from test_task where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>