From 27d341342925f11c19fb7a31da7050f5e9041319 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 19 十月 2023 17:52:29 +0800 Subject: [PATCH] 新增数据分析模块 --- src/main/resources/mapper/ds1/LoginInfoMapper.xml | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/ds1/LoginInfoMapper.xml b/src/main/resources/mapper/ds1/LoginInfoMapper.xml new file mode 100644 index 0000000..60931db --- /dev/null +++ b/src/main/resources/mapper/ds1/LoginInfoMapper.xml @@ -0,0 +1,21 @@ +<?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.flightfeather.monitor.domain.ds1.mapper.LoginInfoMapper"> + <resultMap id="BaseResultMap" type="com.flightfeather.monitor.domain.ds1.entity.LoginInfo"> + <!-- + WARNING - @mbg.generated + --> + <id column="id" jdbcType="INTEGER" property="id" /> + <result column="user_name" jdbcType="VARCHAR" property="userName" /> + <result column="password" jdbcType="VARCHAR" property="password" /> + <result column="cookie" jdbcType="VARCHAR" property="cookie" /> + <result column="cookie_timestamp" jdbcType="TIMESTAMP" property="cookieTimestamp" /> + <result column="region" jdbcType="VARCHAR" property="region" /> + </resultMap> + <sql id="Base_Column_List"> + <!-- + WARNING - @mbg.generated + --> + id, user_name, password, cookie, cookie_timestamp, region + </sql> +</mapper> \ No newline at end of file -- Gitblit v1.9.3