1.添加数据更新接口代码
parent
bd874cbd64
commit
a0c9a75cda
@ -1,92 +0,0 @@
|
|||||||
package com.glxp.udidl.admin.service.dataSync;
|
|
||||||
|
|
||||||
import cn.hutool.core.date.DateField;
|
|
||||||
import cn.hutool.core.date.DatePattern;
|
|
||||||
import cn.hutool.core.date.DateTime;
|
|
||||||
import cn.hutool.core.date.DateUtil;
|
|
||||||
import cn.hutool.core.util.StrUtil;
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
|
||||||
import com.glxp.udidl.admin.constant.Constant;
|
|
||||||
import com.glxp.udidl.admin.entity.info.CompanyEntity;
|
|
||||||
import com.glxp.udidl.admin.entity.udid.JobLog;
|
|
||||||
import com.glxp.udidl.admin.entity.udid.TokenEntity;
|
|
||||||
import com.glxp.udidl.admin.req.UpdateUdiRequest;
|
|
||||||
import com.glxp.udidl.admin.req.udid.TokenRequest;
|
|
||||||
import com.glxp.udidl.admin.service.info.CompanyService;
|
|
||||||
import com.glxp.udidl.admin.service.inout.DeviceService;
|
|
||||||
import com.glxp.udidl.admin.service.inout.ProductInfoService;
|
|
||||||
import com.glxp.udidl.admin.service.udi.JobLogService;
|
|
||||||
import com.glxp.udidl.admin.util.HttpClient;
|
|
||||||
import com.glxp.udidl.admin.util.RedisUtil;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.scheduling.annotation.Async;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Slf4j
|
|
||||||
@Service
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public class DeviceUpdateService {
|
|
||||||
|
|
||||||
private String token;
|
|
||||||
private String url = "sharing/get";
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private RedisUtil redisUtil;
|
|
||||||
@Resource
|
|
||||||
private CompanyService companyService;
|
|
||||||
@Resource
|
|
||||||
private JobLogService jobLogService; //日志
|
|
||||||
@Resource
|
|
||||||
private DeviceSaveService deviceSaveService;
|
|
||||||
@Resource
|
|
||||||
private DeviceService deviceService;
|
|
||||||
@Resource
|
|
||||||
private ProductInfoService productInfoService;
|
|
||||||
|
|
||||||
@Async
|
|
||||||
public void updateUdiData(UpdateUdiRequest updateUdiRequest) {
|
|
||||||
log.info("开始更新数据,更新时间段为: {} - {}", updateUdiRequest.getStartDate(), updateUdiRequest.getEndDate());
|
|
||||||
//解析更新参数
|
|
||||||
DateTime startDate = DateUtil.parse(updateUdiRequest.getStartDate(), DatePattern.SIMPLE_MONTH_PATTERN);
|
|
||||||
DateTime endDate = DateUtil.parse(updateUdiRequest.getEndDate(), DatePattern.SIMPLE_MONTH_PATTERN);
|
|
||||||
|
|
||||||
List<DateTime> dateRanges = DateUtil.rangeToList(startDate, endDate, DateField.MONTH);
|
|
||||||
|
|
||||||
JobLog jobLog = new JobLog();
|
|
||||||
jobLog.setCreateTime(new Date());
|
|
||||||
jobLog.setStatus(0);
|
|
||||||
jobLog.setType(Constant.LOG_TYPE_INFO);
|
|
||||||
jobLog.setDownloadType(Constant.DOWNLOAD_TYPE_MANUAL);
|
|
||||||
jobLogService.insert(jobLog);
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取当前token
|
|
||||||
*
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public String getToken() {
|
|
||||||
token = redisUtil.get("UDI_UPDATE_TOKEN");
|
|
||||||
if (StrUtil.isEmpty(token)) {
|
|
||||||
//查询下载数据使用的appid
|
|
||||||
CompanyEntity companyEntity = companyService.findByTaskType(Constant.TASK_TYPE_UPDATE);
|
|
||||||
TokenRequest tokenRequest = new TokenRequest();
|
|
||||||
tokenRequest.setAppId(companyEntity.getAppId());
|
|
||||||
tokenRequest.setAppSecret(companyEntity.getAppSecret());
|
|
||||||
tokenRequest.setTyshxydm(companyEntity.getTyshxydm());
|
|
||||||
String response = HttpClient.post("token/get", tokenRequest);
|
|
||||||
TokenEntity tokenEntity = JSONObject.parseObject(response, TokenEntity.class);
|
|
||||||
token = tokenEntity.getAccessToken();
|
|
||||||
redisUtil.setEx("UDI_UPDATE_TOKEN", token, 1 * 60 * 60 * 6);
|
|
||||||
}
|
|
||||||
return token;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,230 +1,251 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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">
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.glxp.udidl.admin.dao.udid.DeviceclinicalMapper">
|
<mapper namespace="com.glxp.udidl.admin.dao.udid.DeviceclinicalMapper">
|
||||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
||||||
<id column="id" jdbcType="INTEGER" property="id" />
|
<id column="id" jdbcType="INTEGER" property="id"/>
|
||||||
<result column="deviceRecordKey" jdbcType="VARCHAR" property="devicerecordkey" />
|
<result column="deviceRecordKey" jdbcType="VARCHAR" property="devicerecordkey"/>
|
||||||
<result column="lcsycclx" jdbcType="VARCHAR" property="lcsycclx" />
|
<result column="lcsycclx" jdbcType="VARCHAR" property="lcsycclx"/>
|
||||||
<result column="ccz" jdbcType="VARCHAR" property="ccz" />
|
<result column="ccz" jdbcType="VARCHAR" property="ccz"/>
|
||||||
<result column="ccdw" jdbcType="VARCHAR" property="ccdw" />
|
<result column="ccdw" jdbcType="VARCHAR" property="ccdw"/>
|
||||||
<result column="uuid" jdbcType="VARCHAR" property="uuid" />
|
<result column="uuid" jdbcType="VARCHAR" property="uuid"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<sql id="Example_Where_Clause">
|
<sql id="Example_Where_Clause">
|
||||||
<where>
|
<where>
|
||||||
<foreach collection="oredCriteria" item="criteria" separator="or">
|
<foreach collection="oredCriteria" item="criteria" separator="or">
|
||||||
<if test="criteria.valid">
|
<if test="criteria.valid">
|
||||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||||
<foreach collection="criteria.criteria" item="criterion">
|
<foreach collection="criteria.criteria" item="criterion">
|
||||||
<choose>
|
<choose>
|
||||||
<when test="criterion.noValue">
|
<when test="criterion.noValue">
|
||||||
and ${criterion.condition}
|
and ${criterion.condition}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.singleValue">
|
<when test="criterion.singleValue">
|
||||||
and ${criterion.condition} #{criterion.value}
|
and ${criterion.condition} #{criterion.value}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.betweenValue">
|
<when test="criterion.betweenValue">
|
||||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.listValue">
|
<when test="criterion.listValue">
|
||||||
and ${criterion.condition}
|
and ${criterion.condition}
|
||||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
<foreach close=")" collection="criterion.value" item="listItem" open="("
|
||||||
#{listItem}
|
separator=",">
|
||||||
</foreach>
|
#{listItem}
|
||||||
</when>
|
</foreach>
|
||||||
</choose>
|
</when>
|
||||||
|
</choose>
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
</if>
|
||||||
</foreach>
|
</foreach>
|
||||||
</trim>
|
</where>
|
||||||
</if>
|
</sql>
|
||||||
</foreach>
|
<sql id="Update_By_Example_Where_Clause">
|
||||||
</where>
|
<where>
|
||||||
</sql>
|
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
||||||
<sql id="Update_By_Example_Where_Clause">
|
<if test="criteria.valid">
|
||||||
<where>
|
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||||
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
<foreach collection="criteria.criteria" item="criterion">
|
||||||
<if test="criteria.valid">
|
<choose>
|
||||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
<when test="criterion.noValue">
|
||||||
<foreach collection="criteria.criteria" item="criterion">
|
and ${criterion.condition}
|
||||||
<choose>
|
</when>
|
||||||
<when test="criterion.noValue">
|
<when test="criterion.singleValue">
|
||||||
and ${criterion.condition}
|
and ${criterion.condition} #{criterion.value}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.singleValue">
|
<when test="criterion.betweenValue">
|
||||||
and ${criterion.condition} #{criterion.value}
|
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.betweenValue">
|
<when test="criterion.listValue">
|
||||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
and ${criterion.condition}
|
||||||
</when>
|
<foreach close=")" collection="criterion.value" item="listItem" open="("
|
||||||
<when test="criterion.listValue">
|
separator=",">
|
||||||
and ${criterion.condition}
|
#{listItem}
|
||||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
</foreach>
|
||||||
#{listItem}
|
</when>
|
||||||
</foreach>
|
</choose>
|
||||||
</when>
|
</foreach>
|
||||||
</choose>
|
</trim>
|
||||||
|
</if>
|
||||||
</foreach>
|
</foreach>
|
||||||
</trim>
|
</where>
|
||||||
</if>
|
</sql>
|
||||||
</foreach>
|
<sql id="Base_Column_List">
|
||||||
</where>
|
|
||||||
</sql>
|
|
||||||
<sql id="Base_Column_List">
|
|
||||||
id, deviceRecordKey, lcsycclx, ccz, ccdw, uuid
|
|
||||||
</sql>
|
|
||||||
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceclinicalExample" resultMap="BaseResultMap">
|
|
||||||
select
|
|
||||||
<if test="distinct">
|
|
||||||
distinct
|
|
||||||
</if>
|
|
||||||
<include refid="Base_Column_List" />
|
|
||||||
from deviceclinical
|
|
||||||
<if test="_parameter != null">
|
|
||||||
<include refid="Example_Where_Clause" />
|
|
||||||
</if>
|
|
||||||
<if test="orderByClause != null">
|
|
||||||
order by ${orderByClause}
|
|
||||||
</if>
|
|
||||||
</select>
|
|
||||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
|
||||||
select
|
|
||||||
<include refid="Base_Column_List" />
|
|
||||||
from deviceclinical
|
|
||||||
where id = #{id,jdbcType=INTEGER}
|
|
||||||
</select>
|
|
||||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
||||||
delete from deviceclinical
|
|
||||||
where id = #{id,jdbcType=INTEGER}
|
|
||||||
</delete>
|
|
||||||
<delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceclinicalExample">
|
|
||||||
delete from deviceclinical
|
|
||||||
<if test="_parameter != null">
|
|
||||||
<include refid="Example_Where_Clause" />
|
|
||||||
</if>
|
|
||||||
</delete>
|
|
||||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
|
||||||
insert into deviceclinical ( deviceRecordKey, lcsycclx,
|
|
||||||
ccz, ccdw, uuid)
|
|
||||||
values ( #{devicerecordkey,jdbcType=VARCHAR}, #{lcsycclx,jdbcType=VARCHAR},
|
|
||||||
#{ccz,jdbcType=VARCHAR}, #{ccdw,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR})
|
|
||||||
</insert>
|
|
||||||
<insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
|
||||||
insert into deviceclinical
|
|
||||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
||||||
<if test="id != null">
|
|
||||||
id,
|
id,
|
||||||
</if>
|
|
||||||
<if test="devicerecordkey != null">
|
|
||||||
deviceRecordKey,
|
deviceRecordKey,
|
||||||
</if>
|
|
||||||
<if test="lcsycclx != null">
|
|
||||||
lcsycclx,
|
lcsycclx,
|
||||||
</if>
|
|
||||||
<if test="ccz != null">
|
|
||||||
ccz,
|
ccz,
|
||||||
</if>
|
|
||||||
<if test="ccdw != null">
|
|
||||||
ccdw,
|
ccdw,
|
||||||
</if>
|
uuid
|
||||||
<if test="uuid != null">
|
</sql>
|
||||||
uuid,
|
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceclinicalExample"
|
||||||
</if>
|
resultMap="BaseResultMap">
|
||||||
</trim>
|
select
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="distinct">
|
||||||
<if test="id != null">
|
distinct
|
||||||
#{id,jdbcType=INTEGER},
|
</if>
|
||||||
</if>
|
<include refid="Base_Column_List"/>
|
||||||
<if test="devicerecordkey != null">
|
from deviceclinical
|
||||||
#{devicerecordkey,jdbcType=VARCHAR},
|
<if test="_parameter != null">
|
||||||
</if>
|
<include refid="Example_Where_Clause"/>
|
||||||
<if test="lcsycclx != null">
|
</if>
|
||||||
#{lcsycclx,jdbcType=VARCHAR},
|
<if test="orderByClause != null">
|
||||||
</if>
|
order by ${orderByClause}
|
||||||
<if test="ccz != null">
|
</if>
|
||||||
#{ccz,jdbcType=VARCHAR},
|
</select>
|
||||||
</if>
|
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||||
<if test="ccdw != null">
|
select
|
||||||
#{ccdw,jdbcType=VARCHAR},
|
<include refid="Base_Column_List"/>
|
||||||
</if>
|
from deviceclinical
|
||||||
<if test="uuid != null">
|
where id = #{id,jdbcType=INTEGER}
|
||||||
#{uuid,jdbcType=VARCHAR},
|
</select>
|
||||||
</if>
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||||
</trim>
|
delete
|
||||||
</insert>
|
from deviceclinical
|
||||||
<select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceclinicalExample" resultType="java.lang.Long">
|
where id = #{id,jdbcType=INTEGER}
|
||||||
select count(*) from deviceclinical
|
</delete>
|
||||||
<if test="_parameter != null">
|
<delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceclinicalExample">
|
||||||
<include refid="Example_Where_Clause" />
|
delete
|
||||||
</if>
|
from deviceclinical
|
||||||
</select>
|
<if test="_parameter != null">
|
||||||
<update id="updateByExampleSelective" parameterType="map">
|
<include refid="Example_Where_Clause"/>
|
||||||
update deviceclinical
|
</if>
|
||||||
<set>
|
</delete>
|
||||||
<if test="record.id != null">
|
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
||||||
id = #{record.id,jdbcType=INTEGER},
|
insert into deviceclinical (deviceRecordKey, lcsycclx,
|
||||||
</if>
|
ccz, ccdw, uuid)
|
||||||
<if test="record.devicerecordkey != null">
|
values (#{devicerecordkey,jdbcType=VARCHAR}, #{lcsycclx,jdbcType=VARCHAR},
|
||||||
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
|
#{ccz,jdbcType=VARCHAR}, #{ccdw,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR})
|
||||||
</if>
|
</insert>
|
||||||
<if test="record.lcsycclx != null">
|
<insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
||||||
lcsycclx = #{record.lcsycclx,jdbcType=VARCHAR},
|
insert into deviceclinical
|
||||||
</if>
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
<if test="record.ccz != null">
|
<if test="id != null">
|
||||||
ccz = #{record.ccz,jdbcType=VARCHAR},
|
id,
|
||||||
</if>
|
</if>
|
||||||
<if test="record.ccdw != null">
|
<if test="devicerecordkey != null">
|
||||||
ccdw = #{record.ccdw,jdbcType=VARCHAR},
|
deviceRecordKey,
|
||||||
</if>
|
</if>
|
||||||
<if test="record.uuid != null">
|
<if test="lcsycclx != null">
|
||||||
uuid = #{record.uuid,jdbcType=VARCHAR},
|
lcsycclx,
|
||||||
</if>
|
</if>
|
||||||
</set>
|
<if test="ccz != null">
|
||||||
<if test="_parameter != null">
|
ccz,
|
||||||
<include refid="Update_By_Example_Where_Clause" />
|
</if>
|
||||||
</if>
|
<if test="ccdw != null">
|
||||||
</update>
|
ccdw,
|
||||||
<update id="updateByExample" parameterType="map">
|
</if>
|
||||||
update deviceclinical
|
<if test="uuid != null">
|
||||||
set id = #{record.id,jdbcType=INTEGER},
|
uuid,
|
||||||
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
|
</if>
|
||||||
lcsycclx = #{record.lcsycclx,jdbcType=VARCHAR},
|
</trim>
|
||||||
ccz = #{record.ccz,jdbcType=VARCHAR},
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
ccdw = #{record.ccdw,jdbcType=VARCHAR},
|
<if test="id != null">
|
||||||
uuid = #{record.uuid,jdbcType=VARCHAR}
|
#{id,jdbcType=INTEGER},
|
||||||
<if test="_parameter != null">
|
</if>
|
||||||
<include refid="Update_By_Example_Where_Clause" />
|
<if test="devicerecordkey != null">
|
||||||
</if>
|
#{devicerecordkey,jdbcType=VARCHAR},
|
||||||
</update>
|
</if>
|
||||||
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
<if test="lcsycclx != null">
|
||||||
update deviceclinical
|
#{lcsycclx,jdbcType=VARCHAR},
|
||||||
<set>
|
</if>
|
||||||
<if test="devicerecordkey != null">
|
<if test="ccz != null">
|
||||||
deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
#{ccz,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
<if test="lcsycclx != null">
|
<if test="ccdw != null">
|
||||||
lcsycclx = #{lcsycclx,jdbcType=VARCHAR},
|
#{ccdw,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
<if test="ccz != null">
|
<if test="uuid != null">
|
||||||
ccz = #{ccz,jdbcType=VARCHAR},
|
#{uuid,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
<if test="ccdw != null">
|
</trim>
|
||||||
ccdw = #{ccdw,jdbcType=VARCHAR},
|
</insert>
|
||||||
</if>
|
<select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.DeviceclinicalExample"
|
||||||
<if test="uuid != null">
|
resultType="java.lang.Long">
|
||||||
uuid = #{uuid,jdbcType=VARCHAR},
|
select count(*)
|
||||||
</if>
|
from deviceclinical
|
||||||
</set>
|
<if test="_parameter != null">
|
||||||
where id = #{id,jdbcType=INTEGER}
|
<include refid="Example_Where_Clause"/>
|
||||||
</update>
|
</if>
|
||||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
</select>
|
||||||
update deviceclinical
|
<update id="updateByExampleSelective" parameterType="map">
|
||||||
set deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
update deviceclinical
|
||||||
lcsycclx = #{lcsycclx,jdbcType=VARCHAR},
|
<set>
|
||||||
ccz = #{ccz,jdbcType=VARCHAR},
|
<if test="record.id != null">
|
||||||
ccdw = #{ccdw,jdbcType=VARCHAR},
|
id = #{record.id,jdbcType=INTEGER},
|
||||||
uuid = #{uuid,jdbcType=VARCHAR}
|
</if>
|
||||||
where id = #{id,jdbcType=INTEGER}
|
<if test="record.devicerecordkey != null">
|
||||||
</update>
|
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
|
||||||
<select id="downloadDeviceclinical" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest" resultMap="BaseResultMap">
|
</if>
|
||||||
select * from deviceclinical
|
<if test="record.lcsycclx != null">
|
||||||
|
lcsycclx = #{record.lcsycclx,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="record.ccz != null">
|
||||||
|
ccz = #{record.ccz,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="record.ccdw != null">
|
||||||
|
ccdw = #{record.ccdw,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="record.uuid != null">
|
||||||
|
uuid = #{record.uuid,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
</set>
|
||||||
|
<if test="_parameter != null">
|
||||||
|
<include refid="Update_By_Example_Where_Clause"/>
|
||||||
|
</if>
|
||||||
|
</update>
|
||||||
|
<update id="updateByExample" parameterType="map">
|
||||||
|
update deviceclinical
|
||||||
|
set id = #{record.id,jdbcType=INTEGER},
|
||||||
|
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
|
||||||
|
lcsycclx = #{record.lcsycclx,jdbcType=VARCHAR},
|
||||||
|
ccz = #{record.ccz,jdbcType=VARCHAR},
|
||||||
|
ccdw = #{record.ccdw,jdbcType=VARCHAR},
|
||||||
|
uuid = #{record.uuid,jdbcType=VARCHAR}
|
||||||
|
<if test="_parameter != null">
|
||||||
|
<include refid="Update_By_Example_Where_Clause"/>
|
||||||
|
</if>
|
||||||
|
</update>
|
||||||
|
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
||||||
|
update deviceclinical
|
||||||
|
<set>
|
||||||
|
<if test="devicerecordkey != null">
|
||||||
|
deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="lcsycclx != null">
|
||||||
|
lcsycclx = #{lcsycclx,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="ccz != null">
|
||||||
|
ccz = #{ccz,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="ccdw != null">
|
||||||
|
ccdw = #{ccdw,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="uuid != null">
|
||||||
|
uuid = #{uuid,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
</set>
|
||||||
|
where id = #{id,jdbcType=INTEGER}
|
||||||
|
</update>
|
||||||
|
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
||||||
|
update deviceclinical
|
||||||
|
set deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
||||||
|
lcsycclx = #{lcsycclx,jdbcType=VARCHAR},
|
||||||
|
ccz = #{ccz,jdbcType=VARCHAR},
|
||||||
|
ccdw = #{ccdw,jdbcType=VARCHAR},
|
||||||
|
uuid = #{uuid,jdbcType=VARCHAR}
|
||||||
|
where id = #{id,jdbcType=INTEGER}
|
||||||
|
</update>
|
||||||
|
<select id="downloadDeviceclinical" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest"
|
||||||
|
resultMap="BaseResultMap">
|
||||||
|
select *
|
||||||
|
from deviceclinical
|
||||||
limit #{page},#{limit}
|
limit #{page},#{limit}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<insert id="update" parameterType="com.glxp.udidl.admin.entity.udid.Deviceclinical">
|
||||||
|
replace into deviceclinical (deviceRecordKey, lcsycclx,
|
||||||
|
ccz, ccdw, uuid)
|
||||||
|
values (#{devicerecordkey,jdbcType=VARCHAR}, #{lcsycclx,jdbcType=VARCHAR},
|
||||||
|
#{ccz,jdbcType=VARCHAR}, #{ccdw,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR})
|
||||||
|
</insert>
|
||||||
</mapper>
|
</mapper>
|
@ -1,248 +1,267 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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">
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.glxp.udidl.admin.dao.udid.DevicestorageMapper">
|
<mapper namespace="com.glxp.udidl.admin.dao.udid.DevicestorageMapper">
|
||||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
||||||
<id column="id" jdbcType="INTEGER" property="id" />
|
<id column="id" jdbcType="INTEGER" property="id"/>
|
||||||
<result column="deviceRecordKey" jdbcType="VARCHAR" property="devicerecordkey" />
|
<result column="deviceRecordKey" jdbcType="VARCHAR" property="devicerecordkey"/>
|
||||||
<result column="cchcztj" jdbcType="VARCHAR" property="cchcztj" />
|
<result column="cchcztj" jdbcType="VARCHAR" property="cchcztj"/>
|
||||||
<result column="jldw" jdbcType="VARCHAR" property="jldw" />
|
<result column="jldw" jdbcType="VARCHAR" property="jldw"/>
|
||||||
<result column="zdz" jdbcType="VARCHAR" property="zdz" />
|
<result column="zdz" jdbcType="VARCHAR" property="zdz"/>
|
||||||
<result column="zgz" jdbcType="VARCHAR" property="zgz" />
|
<result column="zgz" jdbcType="VARCHAR" property="zgz"/>
|
||||||
<result column="uuid" jdbcType="VARCHAR" property="uuid" />
|
<result column="uuid" jdbcType="VARCHAR" property="uuid"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<sql id="Example_Where_Clause">
|
<sql id="Example_Where_Clause">
|
||||||
<where>
|
<where>
|
||||||
<foreach collection="oredCriteria" item="criteria" separator="or">
|
<foreach collection="oredCriteria" item="criteria" separator="or">
|
||||||
<if test="criteria.valid">
|
<if test="criteria.valid">
|
||||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||||
<foreach collection="criteria.criteria" item="criterion">
|
<foreach collection="criteria.criteria" item="criterion">
|
||||||
<choose>
|
<choose>
|
||||||
<when test="criterion.noValue">
|
<when test="criterion.noValue">
|
||||||
and ${criterion.condition}
|
and ${criterion.condition}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.singleValue">
|
<when test="criterion.singleValue">
|
||||||
and ${criterion.condition} #{criterion.value}
|
and ${criterion.condition} #{criterion.value}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.betweenValue">
|
<when test="criterion.betweenValue">
|
||||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.listValue">
|
<when test="criterion.listValue">
|
||||||
and ${criterion.condition}
|
and ${criterion.condition}
|
||||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
<foreach close=")" collection="criterion.value" item="listItem" open="("
|
||||||
#{listItem}
|
separator=",">
|
||||||
</foreach>
|
#{listItem}
|
||||||
</when>
|
</foreach>
|
||||||
</choose>
|
</when>
|
||||||
|
</choose>
|
||||||
|
</foreach>
|
||||||
|
</trim>
|
||||||
|
</if>
|
||||||
</foreach>
|
</foreach>
|
||||||
</trim>
|
</where>
|
||||||
</if>
|
</sql>
|
||||||
</foreach>
|
<sql id="Update_By_Example_Where_Clause">
|
||||||
</where>
|
<where>
|
||||||
</sql>
|
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
||||||
<sql id="Update_By_Example_Where_Clause">
|
<if test="criteria.valid">
|
||||||
<where>
|
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||||
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
<foreach collection="criteria.criteria" item="criterion">
|
||||||
<if test="criteria.valid">
|
<choose>
|
||||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
<when test="criterion.noValue">
|
||||||
<foreach collection="criteria.criteria" item="criterion">
|
and ${criterion.condition}
|
||||||
<choose>
|
</when>
|
||||||
<when test="criterion.noValue">
|
<when test="criterion.singleValue">
|
||||||
and ${criterion.condition}
|
and ${criterion.condition} #{criterion.value}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.singleValue">
|
<when test="criterion.betweenValue">
|
||||||
and ${criterion.condition} #{criterion.value}
|
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||||
</when>
|
</when>
|
||||||
<when test="criterion.betweenValue">
|
<when test="criterion.listValue">
|
||||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
and ${criterion.condition}
|
||||||
</when>
|
<foreach close=")" collection="criterion.value" item="listItem" open="("
|
||||||
<when test="criterion.listValue">
|
separator=",">
|
||||||
and ${criterion.condition}
|
#{listItem}
|
||||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
</foreach>
|
||||||
#{listItem}
|
</when>
|
||||||
</foreach>
|
</choose>
|
||||||
</when>
|
</foreach>
|
||||||
</choose>
|
</trim>
|
||||||
|
</if>
|
||||||
</foreach>
|
</foreach>
|
||||||
</trim>
|
</where>
|
||||||
</if>
|
</sql>
|
||||||
</foreach>
|
<sql id="Base_Column_List">
|
||||||
</where>
|
|
||||||
</sql>
|
|
||||||
<sql id="Base_Column_List">
|
|
||||||
id, deviceRecordKey, cchcztj, jldw, zdz, zgz, uuid
|
|
||||||
</sql>
|
|
||||||
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicestorageExample" resultMap="BaseResultMap">
|
|
||||||
select
|
|
||||||
<if test="distinct">
|
|
||||||
distinct
|
|
||||||
</if>
|
|
||||||
<include refid="Base_Column_List" />
|
|
||||||
from devicestorage
|
|
||||||
<if test="_parameter != null">
|
|
||||||
<include refid="Example_Where_Clause" />
|
|
||||||
</if>
|
|
||||||
<if test="orderByClause != null">
|
|
||||||
order by ${orderByClause}
|
|
||||||
</if>
|
|
||||||
</select>
|
|
||||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
|
||||||
select
|
|
||||||
<include refid="Base_Column_List" />
|
|
||||||
from devicestorage
|
|
||||||
where id = #{id,jdbcType=INTEGER}
|
|
||||||
</select>
|
|
||||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
|
||||||
delete from devicestorage
|
|
||||||
where id = #{id,jdbcType=INTEGER}
|
|
||||||
</delete>
|
|
||||||
<delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicestorageExample">
|
|
||||||
delete from devicestorage
|
|
||||||
<if test="_parameter != null">
|
|
||||||
<include refid="Example_Where_Clause" />
|
|
||||||
</if>
|
|
||||||
</delete>
|
|
||||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
|
||||||
insert into devicestorage ( deviceRecordKey, cchcztj,
|
|
||||||
jldw, zdz, zgz, uuid
|
|
||||||
)
|
|
||||||
values ( #{devicerecordkey,jdbcType=VARCHAR}, #{cchcztj,jdbcType=VARCHAR},
|
|
||||||
#{jldw,jdbcType=VARCHAR}, #{zdz,jdbcType=VARCHAR}, #{zgz,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR}
|
|
||||||
)
|
|
||||||
</insert>
|
|
||||||
<insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
|
||||||
insert into devicestorage
|
|
||||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
||||||
<if test="id != null">
|
|
||||||
id,
|
id,
|
||||||
</if>
|
|
||||||
<if test="devicerecordkey != null">
|
|
||||||
deviceRecordKey,
|
deviceRecordKey,
|
||||||
</if>
|
|
||||||
<if test="cchcztj != null">
|
|
||||||
cchcztj,
|
cchcztj,
|
||||||
</if>
|
|
||||||
<if test="jldw != null">
|
|
||||||
jldw,
|
jldw,
|
||||||
</if>
|
|
||||||
<if test="zdz != null">
|
|
||||||
zdz,
|
zdz,
|
||||||
</if>
|
|
||||||
<if test="zgz != null">
|
|
||||||
zgz,
|
zgz,
|
||||||
</if>
|
uuid
|
||||||
<if test="uuid != null">
|
</sql>
|
||||||
uuid,
|
<select id="selectByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicestorageExample"
|
||||||
</if>
|
resultMap="BaseResultMap">
|
||||||
</trim>
|
select
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="distinct">
|
||||||
<if test="id != null">
|
distinct
|
||||||
#{id,jdbcType=INTEGER},
|
</if>
|
||||||
</if>
|
<include refid="Base_Column_List"/>
|
||||||
<if test="devicerecordkey != null">
|
from devicestorage
|
||||||
#{devicerecordkey,jdbcType=VARCHAR},
|
<if test="_parameter != null">
|
||||||
</if>
|
<include refid="Example_Where_Clause"/>
|
||||||
<if test="cchcztj != null">
|
</if>
|
||||||
#{cchcztj,jdbcType=VARCHAR},
|
<if test="orderByClause != null">
|
||||||
</if>
|
order by ${orderByClause}
|
||||||
<if test="jldw != null">
|
</if>
|
||||||
#{jldw,jdbcType=VARCHAR},
|
</select>
|
||||||
</if>
|
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||||
<if test="zdz != null">
|
select
|
||||||
#{zdz,jdbcType=VARCHAR},
|
<include refid="Base_Column_List"/>
|
||||||
</if>
|
from devicestorage
|
||||||
<if test="zgz != null">
|
where id = #{id,jdbcType=INTEGER}
|
||||||
#{zgz,jdbcType=VARCHAR},
|
</select>
|
||||||
</if>
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||||
<if test="uuid != null">
|
delete
|
||||||
#{uuid,jdbcType=VARCHAR},
|
from devicestorage
|
||||||
</if>
|
where id = #{id,jdbcType=INTEGER}
|
||||||
</trim>
|
</delete>
|
||||||
</insert>
|
<delete id="deleteByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicestorageExample">
|
||||||
<select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicestorageExample" resultType="java.lang.Long">
|
delete
|
||||||
select count(*) from devicestorage
|
from devicestorage
|
||||||
<if test="_parameter != null">
|
<if test="_parameter != null">
|
||||||
<include refid="Example_Where_Clause" />
|
<include refid="Example_Where_Clause"/>
|
||||||
</if>
|
</if>
|
||||||
</select>
|
</delete>
|
||||||
<update id="updateByExampleSelective" parameterType="map">
|
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
||||||
update devicestorage
|
insert into devicestorage (deviceRecordKey, cchcztj,
|
||||||
<set>
|
jldw, zdz, zgz, uuid)
|
||||||
<if test="record.id != null">
|
values (#{devicerecordkey,jdbcType=VARCHAR}, #{cchcztj,jdbcType=VARCHAR},
|
||||||
id = #{record.id,jdbcType=INTEGER},
|
#{jldw,jdbcType=VARCHAR}, #{zdz,jdbcType=VARCHAR}, #{zgz,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR})
|
||||||
</if>
|
</insert>
|
||||||
<if test="record.devicerecordkey != null">
|
<insert id="insertSelective" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
||||||
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
|
insert into devicestorage
|
||||||
</if>
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
<if test="record.cchcztj != null">
|
<if test="id != null">
|
||||||
cchcztj = #{record.cchcztj,jdbcType=VARCHAR},
|
id,
|
||||||
</if>
|
</if>
|
||||||
<if test="record.jldw != null">
|
<if test="devicerecordkey != null">
|
||||||
jldw = #{record.jldw,jdbcType=VARCHAR},
|
deviceRecordKey,
|
||||||
</if>
|
</if>
|
||||||
<if test="record.zdz != null">
|
<if test="cchcztj != null">
|
||||||
zdz = #{record.zdz,jdbcType=VARCHAR},
|
cchcztj,
|
||||||
</if>
|
</if>
|
||||||
<if test="record.zgz != null">
|
<if test="jldw != null">
|
||||||
zgz = #{record.zgz,jdbcType=VARCHAR},
|
jldw,
|
||||||
</if>
|
</if>
|
||||||
<if test="record.uuid != null">
|
<if test="zdz != null">
|
||||||
uuid = #{record.uuid,jdbcType=VARCHAR},
|
zdz,
|
||||||
</if>
|
</if>
|
||||||
</set>
|
<if test="zgz != null">
|
||||||
<if test="_parameter != null">
|
zgz,
|
||||||
<include refid="Update_By_Example_Where_Clause" />
|
</if>
|
||||||
</if>
|
<if test="uuid != null">
|
||||||
</update>
|
uuid,
|
||||||
<update id="updateByExample" parameterType="map">
|
</if>
|
||||||
update devicestorage
|
</trim>
|
||||||
set id = #{record.id,jdbcType=INTEGER},
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
|
<if test="id != null">
|
||||||
cchcztj = #{record.cchcztj,jdbcType=VARCHAR},
|
#{id,jdbcType=INTEGER},
|
||||||
jldw = #{record.jldw,jdbcType=VARCHAR},
|
</if>
|
||||||
zdz = #{record.zdz,jdbcType=VARCHAR},
|
<if test="devicerecordkey != null">
|
||||||
zgz = #{record.zgz,jdbcType=VARCHAR},
|
#{devicerecordkey,jdbcType=VARCHAR},
|
||||||
uuid = #{record.uuid,jdbcType=VARCHAR}
|
</if>
|
||||||
<if test="_parameter != null">
|
<if test="cchcztj != null">
|
||||||
<include refid="Update_By_Example_Where_Clause" />
|
#{cchcztj,jdbcType=VARCHAR},
|
||||||
</if>
|
</if>
|
||||||
</update>
|
<if test="jldw != null">
|
||||||
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
#{jldw,jdbcType=VARCHAR},
|
||||||
update devicestorage
|
</if>
|
||||||
<set>
|
<if test="zdz != null">
|
||||||
<if test="devicerecordkey != null">
|
#{zdz,jdbcType=VARCHAR},
|
||||||
deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
</if>
|
||||||
</if>
|
<if test="zgz != null">
|
||||||
<if test="cchcztj != null">
|
#{zgz,jdbcType=VARCHAR},
|
||||||
cchcztj = #{cchcztj,jdbcType=VARCHAR},
|
</if>
|
||||||
</if>
|
<if test="uuid != null">
|
||||||
<if test="jldw != null">
|
#{uuid,jdbcType=VARCHAR},
|
||||||
jldw = #{jldw,jdbcType=VARCHAR},
|
</if>
|
||||||
</if>
|
</trim>
|
||||||
<if test="zdz != null">
|
</insert>
|
||||||
zdz = #{zdz,jdbcType=VARCHAR},
|
<select id="countByExample" parameterType="com.glxp.udidl.admin.entity.udid.DevicestorageExample"
|
||||||
</if>
|
resultType="java.lang.Long">
|
||||||
<if test="zgz != null">
|
select count(*)
|
||||||
zgz = #{zgz,jdbcType=VARCHAR},
|
from devicestorage
|
||||||
</if>
|
<if test="_parameter != null">
|
||||||
<if test="uuid != null">
|
<include refid="Example_Where_Clause"/>
|
||||||
uuid = #{uuid,jdbcType=VARCHAR},
|
</if>
|
||||||
</if>
|
</select>
|
||||||
</set>
|
<update id="updateByExampleSelective" parameterType="map">
|
||||||
where id = #{id,jdbcType=INTEGER}
|
update devicestorage
|
||||||
</update>
|
<set>
|
||||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
<if test="record.id != null">
|
||||||
update devicestorage
|
id = #{record.id,jdbcType=INTEGER},
|
||||||
set deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
</if>
|
||||||
cchcztj = #{cchcztj,jdbcType=VARCHAR},
|
<if test="record.devicerecordkey != null">
|
||||||
jldw = #{jldw,jdbcType=VARCHAR},
|
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
|
||||||
zdz = #{zdz,jdbcType=VARCHAR},
|
</if>
|
||||||
zgz = #{zgz,jdbcType=VARCHAR},
|
<if test="record.cchcztj != null">
|
||||||
uuid = #{uuid,jdbcType=VARCHAR}
|
cchcztj = #{record.cchcztj,jdbcType=VARCHAR},
|
||||||
where id = #{id,jdbcType=INTEGER}
|
</if>
|
||||||
</update>
|
<if test="record.jldw != null">
|
||||||
<select id="downloadDevicestorage" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest" resultMap="BaseResultMap">
|
jldw = #{record.jldw,jdbcType=VARCHAR},
|
||||||
select * from devicestorage
|
</if>
|
||||||
|
<if test="record.zdz != null">
|
||||||
|
zdz = #{record.zdz,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="record.zgz != null">
|
||||||
|
zgz = #{record.zgz,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="record.uuid != null">
|
||||||
|
uuid = #{record.uuid,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
</set>
|
||||||
|
<if test="_parameter != null">
|
||||||
|
<include refid="Update_By_Example_Where_Clause"/>
|
||||||
|
</if>
|
||||||
|
</update>
|
||||||
|
<update id="updateByExample" parameterType="map">
|
||||||
|
update devicestorage
|
||||||
|
set id = #{record.id,jdbcType=INTEGER},
|
||||||
|
deviceRecordKey = #{record.devicerecordkey,jdbcType=VARCHAR},
|
||||||
|
cchcztj = #{record.cchcztj,jdbcType=VARCHAR},
|
||||||
|
jldw = #{record.jldw,jdbcType=VARCHAR},
|
||||||
|
zdz = #{record.zdz,jdbcType=VARCHAR},
|
||||||
|
zgz = #{record.zgz,jdbcType=VARCHAR},
|
||||||
|
uuid = #{record.uuid,jdbcType=VARCHAR}
|
||||||
|
<if test="_parameter != null">
|
||||||
|
<include refid="Update_By_Example_Where_Clause"/>
|
||||||
|
</if>
|
||||||
|
</update>
|
||||||
|
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
||||||
|
update devicestorage
|
||||||
|
<set>
|
||||||
|
<if test="devicerecordkey != null">
|
||||||
|
deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="cchcztj != null">
|
||||||
|
cchcztj = #{cchcztj,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="jldw != null">
|
||||||
|
jldw = #{jldw,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="zdz != null">
|
||||||
|
zdz = #{zdz,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="zgz != null">
|
||||||
|
zgz = #{zgz,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
<if test="uuid != null">
|
||||||
|
uuid = #{uuid,jdbcType=VARCHAR},
|
||||||
|
</if>
|
||||||
|
</set>
|
||||||
|
where id = #{id,jdbcType=INTEGER}
|
||||||
|
</update>
|
||||||
|
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
||||||
|
update devicestorage
|
||||||
|
set deviceRecordKey = #{devicerecordkey,jdbcType=VARCHAR},
|
||||||
|
cchcztj = #{cchcztj,jdbcType=VARCHAR},
|
||||||
|
jldw = #{jldw,jdbcType=VARCHAR},
|
||||||
|
zdz = #{zdz,jdbcType=VARCHAR},
|
||||||
|
zgz = #{zgz,jdbcType=VARCHAR},
|
||||||
|
uuid = #{uuid,jdbcType=VARCHAR}
|
||||||
|
where id = #{id,jdbcType=INTEGER}
|
||||||
|
</update>
|
||||||
|
<select id="downloadDevicestorage" parameterType="com.glxp.udidl.admin.req.DownloadUdiRequest"
|
||||||
|
resultMap="BaseResultMap">
|
||||||
|
select *
|
||||||
|
from devicestorage
|
||||||
limit #{page},#{limit}
|
limit #{page},#{limit}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<insert id="update" parameterType="com.glxp.udidl.admin.entity.udid.Devicestorage">
|
||||||
|
replace into devicestorage (deviceRecordKey, cchcztj,
|
||||||
|
jldw, zdz, zgz, uuid)
|
||||||
|
values (#{devicerecordkey,jdbcType=VARCHAR}, #{cchcztj,jdbcType=VARCHAR},
|
||||||
|
#{jldw,jdbcType=VARCHAR}, #{zdz,jdbcType=VARCHAR}, #{zgz,jdbcType=VARCHAR}, #{uuid,jdbcType=VARCHAR})
|
||||||
|
</insert>
|
||||||
</mapper>
|
</mapper>
|
Loading…
Reference in New Issue