This commit is contained in:
Lx 2025-09-24 10:05:53 +08:00
parent 7f083ab2a4
commit 2626db42e8
6 changed files with 0 additions and 213 deletions

View File

@ -1,20 +0,0 @@
package cn.iocoder.yudao.module.train.controller.admin.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 救援调度流程详细信息 前端控制器
* </p>
*
* @author author
* @since 2025-09-15
*/
@RestController
@RequestMapping("/rescue-info-dispatch-detail")
public class RescueInfoDispatchDetailController {
}

View File

@ -1,115 +0,0 @@
package cn.iocoder.yudao.module.train.controller.admin.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
/**
* <p>
* 救援调度流程详细信息
* </p>
*
* @author author
* @since 2025-09-15
*/
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("rescue_info_dispatch_detail")
public class RescueInfoDispatchDetail implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 救援主键
*/
private Integer rescueInfoId;
/**
* 类型
*/
private String type;
/**
* 标题
*/
private String title;
/**
* 司机备注
*/
private String remark;
/**
* 照片
*/
private String images;
/**
* 补充照片
*/
private String supplementImages;
/**
* 自动备注
*/
private String autoRemark;
/**
* 耗时
*/
private String timeCost;
/**
* 位置主键
*/
private Integer positionId;
/**
* 租户号
*/
private String tenantId;
/**
* 是否删除0代表存在 1代表删除
*/
private Boolean deleted;
/**
* 创建人
*/
private String creator;
/**
* 创建时间
*/
private LocalDateTime createTime;
/**
* 更新人
*/
private String updater;
/**
* 更新时间
*/
private LocalDateTime updateTime;
/**
* 部门id(system_dept表中的id)
*/
private Long deptId;
}

View File

@ -1,16 +0,0 @@
package cn.iocoder.yudao.module.train.controller.admin.mapper;
import cn.iocoder.yudao.module.train.controller.admin.entity.RescueInfoDispatchDetail;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 救援调度流程详细信息 Mapper 接口
* </p>
*
* @author author
* @since 2025-09-15
*/
public interface RescueInfoDispatchDetailMapper extends BaseMapper<RescueInfoDispatchDetail> {
}

View File

@ -1,16 +0,0 @@
package cn.iocoder.yudao.module.train.controller.admin.service;
import cn.iocoder.yudao.module.train.controller.admin.entity.RescueInfoDispatchDetail;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 救援调度流程详细信息 服务类
* </p>
*
* @author author
* @since 2025-09-15
*/
public interface IRescueInfoDispatchDetailService extends IService<RescueInfoDispatchDetail> {
}

View File

@ -1,20 +0,0 @@
package cn.iocoder.yudao.module.train.controller.admin.service.impl;
import cn.iocoder.yudao.module.train.controller.admin.entity.RescueInfoDispatchDetail;
import cn.iocoder.yudao.module.train.controller.admin.mapper.RescueInfoDispatchDetailMapper;
import cn.iocoder.yudao.module.train.controller.admin.service.IRescueInfoDispatchDetailService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
/**
* <p>
* 救援调度流程详细信息 服务实现类
* </p>
*
* @author author
* @since 2025-09-15
*/
@Service
public class RescueInfoDispatchDetailServiceImpl extends ServiceImpl<RescueInfoDispatchDetailMapper, RescueInfoDispatchDetail> implements IRescueInfoDispatchDetailService {
}

View File

@ -1,26 +0,0 @@
<?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="cn.iocoder.yudao.module.train.controller.admin.mapper.RescueInfoDispatchDetailMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="cn.iocoder.yudao.module.train.controller.admin.entity.RescueInfoDispatchDetail">
<id column="id" property="id" />
<result column="rescue_info_id" property="rescueInfoId" />
<result column="type" property="type" />
<result column="title" property="title" />
<result column="remark" property="remark" />
<result column="images" property="images" />
<result column="supplement_images" property="supplementImages" />
<result column="auto_remark" property="autoRemark" />
<result column="time_cost" property="timeCost" />
<result column="position_id" property="positionId" />
<result column="tenant_id" property="tenantId" />
<result column="deleted" property="deleted" />
<result column="creator" property="creator" />
<result column="create_time" property="createTime" />
<result column="updater" property="updater" />
<result column="update_time" property="updateTime" />
<result column="dept_id" property="deptId" />
</resultMap>
</mapper>