From 141696efeb3598b2a8c62aada6e6b45734e56f11 Mon Sep 17 00:00:00 2001 From: Junjie <DELL@qq.com> Date: 星期一, 22 十二月 2025 16:59:45 +0800 Subject: [PATCH] # --- src/main/resources/mapper/BasStationMapper.xml | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/BasStationMapper.xml b/src/main/resources/mapper/BasStationMapper.xml new file mode 100644 index 0000000..9ed4534 --- /dev/null +++ b/src/main/resources/mapper/BasStationMapper.xml @@ -0,0 +1,22 @@ +<?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.zy.asrs.mapper.BasStationMapper"> + + <!-- 閫氱敤鏌ヨ鏄犲皠缁撴灉 --> + <resultMap id="BaseResultMap" type="com.zy.asrs.entity.BasStation"> + <id column="station_id" property="stationId" /> + <result column="status" property="status" /> + <result column="wrk_no" property="wrkNo" /> + <result column="in_enable" property="inEnable" /> + <result column="out_enable" property="outEnable" /> + <result column="create_by" property="createBy" /> + <result column="create_time" property="createTime" /> + <result column="update_by" property="updateBy" /> + <result column="update_time" property="updateTime" /> + <result column="memo" property="memo" /> + <result column="station_lev" property="stationLev" /> + <result column="device_no" property="deviceNo" /> + + </resultMap> + +</mapper> -- Gitblit v1.9.1