Files
klp-oa/klp-wms/src/main/resources/mapper/klp/WmsCameraManagementMapper.xml
Joshi 19c6ad37c6 feat(wms): 新增摄像头管理功能
- 添加摄像头管理相关的实体类、Mapper、Service、Controller等
- 实现摄像头管理的基础功能,包括查询、新增、修改、删除等
- 添加摄像头管理的Excel导出功能
- 为摄像头管理相关操作添加权限控制
2025-08-07 16:49:13 +08:00

32 lines
1.4 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.klp.mapper.WmsCameraManagementMapper">
<resultMap type="com.klp.domain.WmsCameraManagement" id="WmsCameraManagementResult">
<result property="cameraId" column="camera_id"/>
<result property="cameraCode" column="camera_code"/>
<result property="cameraName" column="camera_name"/>
<result property="rtspUrl" column="rtsp_url"/>
<result property="wsFmp4" column="ws_fmp4"/>
<result property="httpFmp4" column="http_fmp4"/>
<result property="rtspAddr" column="rtsp_addr"/>
<result property="hlsAddr" column="hls_addr"/>
<result property="location" column="location"/>
<result property="groupName" column="group_name"/>
<result property="warehouseName" column="warehouse_name"/>
<result property="status" column="status"/>
<result property="username" column="username"/>
<result property="password" column="password"/>
<result property="createTime" column="create_time"/>
<result property="createBy" column="create_by"/>
<result property="updateTime" column="update_time"/>
<result property="updateBy" column="update_by"/>
<result property="delFlag" column="del_flag"/>
<result property="remark" column="remark"/>
</resultMap>
</mapper>