提交 93b66cdb 编写于 作者: rushui.chen's avatar rushui.chen

20200106 删除无用的注释和依赖

上级 65b0d24a
流水线 #20189 已失败 于阶段
in 0 second
package com.pica.cloud.account.account.server.mapper;
import com.pica.cloud.account.account.server.entity.AgreementEntity;
//public interface AgreementEntityMapper {
// int deleteByPrimaryKey(Long id);
//
// int insert(AgreementEntity record);
//
// int insertSelective(AgreementEntity record);
//
// AgreementEntity selectByPrimaryKey(Long id);
//
// /**
// * 根据协议类型查询协议
// *
// * @param agreementType
// * @return
// */
// Integer selectByType(int agreementType);
//
//
// int updateByPrimaryKeySelective(AgreementEntity record);
//
// int updateByPrimaryKeyWithBLOBs(AgreementEntity record);
//
// int updateByPrimaryKey(AgreementEntity record);
//}
\ No newline at end of file
//package com.pica.cloud.account.account.server.mapper;
//
//
//import com.pica.cloud.account.account.server.entity.AgreementLogEntity;
//import com.pica.cloud.account.account.server.entity.PProtocolLog;
//
//public interface AgreementLogEntityMapper {
// int deleteByPrimaryKey(Long id);
//
// int insert(AgreementLogEntity record);
//
// int insertSelective(AgreementLogEntity record);
//
// AgreementLogEntity selectByPrimaryKey(Long id);
//
// int updateByPrimaryKeySelective(AgreementLogEntity record);
//
// int updateByPrimaryKey(AgreementLogEntity record);
//
// Integer getLatestProtocolId(int type);
//
// int insertProtocolLog(PProtocolLog record);
//
// int updateSignNum(Integer id);
//}
\ No newline at end of file
...@@ -10,7 +10,6 @@ import com.pica.cloud.account.account.server.log.AccountLogUtils; ...@@ -10,7 +10,6 @@ import com.pica.cloud.account.account.server.log.AccountLogUtils;
import com.pica.cloud.account.account.server.mapper.AccountInfoDetailMapper; import com.pica.cloud.account.account.server.mapper.AccountInfoDetailMapper;
import com.pica.cloud.account.account.server.mapper.AccountMapper; import com.pica.cloud.account.account.server.mapper.AccountMapper;
import com.pica.cloud.account.account.server.mapper.AccountPatientInfoMapper; import com.pica.cloud.account.account.server.mapper.AccountPatientInfoMapper;
import com.pica.cloud.account.account.server.mapper.AgreementLogEntityMapper;
import com.pica.cloud.account.account.server.req.BaseRequest; import com.pica.cloud.account.account.server.req.BaseRequest;
import com.pica.cloud.account.account.server.service.RegisterService; import com.pica.cloud.account.account.server.service.RegisterService;
import com.pica.cloud.account.account.server.util.AESUtil; import com.pica.cloud.account.account.server.util.AESUtil;
......
<!--<?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.pica.cloud.account.account.server.mapper.AgreementEntityMapper">-->
<!--<resultMap id="BaseResultMap" type="com.pica.cloud.account.account.server.entity.AgreementEntity">-->
<!--<id column="id" property="id" jdbcType="BIGINT"/>-->
<!--<result column="agreement_type" property="agreement_type" jdbcType="INTEGER"/>-->
<!--<result column="version" property="version" jdbcType="VARCHAR"/>-->
<!--<result column="delete_flag" property="delete_flag" jdbcType="INTEGER"/>-->
<!--<result column="created_id" property="created_id" jdbcType="BIGINT"/>-->
<!--<result column="created_time" property="created_time" jdbcType="TIMESTAMP"/>-->
<!--<result column="modified_id" property="modified_id" jdbcType="BIGINT"/>-->
<!--<result column="modified_time" property="modified_time" jdbcType="TIMESTAMP"/>-->
<!--</resultMap>-->
<!--<resultMap id="ResultMapWithBLOBs" type="com.pica.cloud.account.account.server.entity.AgreementEntity"-->
<!--extends="BaseResultMap">-->
<!--<result column="agreement_content" property="agreement_content" jdbcType="LONGVARCHAR"/>-->
<!--</resultMap>-->
<!--<sql id="Base_Column_List">-->
<!--id, agreement_type, version, delete_flag, created_id, created_time, modified_id, -->
<!--modified_time-->
<!--</sql>-->
<!--<sql id="Blob_Column_List">-->
<!--agreement_content-->
<!--</sql>-->
<!--&lt;!&ndash;通过类型获取用户同意的协议的版本&ndash;&gt;-->
<!--<select id="selectByType" parameterType="Integer" resultType="Integer">-->
<!--select version from doctor_agreement-->
<!--where agreement_type = #{agreementType}-->
<!--</select>-->
<!--<select id="selectByPrimaryKey" resultMap="ResultMapWithBLOBs" parameterType="java.lang.Long">-->
<!--select-->
<!--<include refid="Base_Column_List"/>-->
<!--,-->
<!--<include refid="Blob_Column_List"/>-->
<!--from doctor_agreement-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</select>-->
<!--<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">-->
<!--delete from doctor_agreement-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</delete>-->
<!--<insert id="insert" parameterType="com.pica.cloud.account.account.server.entity.AgreementEntity">-->
<!--insert into doctor_agreement (id, agreement_type, version, -->
<!--delete_flag, created_id, created_time, -->
<!--modified_id, modified_time, agreement_content-->
<!--)-->
<!--values (#{id,jdbcType=BIGINT}, #{agreement_type,jdbcType=INTEGER}, #{version,jdbcType=VARCHAR}, -->
<!--#{delete_flag,jdbcType=INTEGER}, #{created_id,jdbcType=BIGINT}, #{created_time,jdbcType=TIMESTAMP}, -->
<!--#{modified_id,jdbcType=BIGINT}, #{modified_time,jdbcType=TIMESTAMP}, #{agreement_content,jdbcType=LONGVARCHAR}-->
<!--)-->
<!--</insert>-->
<!--<insert id="insertSelective" parameterType="com.pica.cloud.account.account.server.entity.AgreementEntity">-->
<!--insert into doctor_agreement-->
<!--<trim prefix="(" suffix=")" suffixOverrides=",">-->
<!--<if test="id != null">-->
<!--id,-->
<!--</if>-->
<!--<if test="agreement_type != null">-->
<!--agreement_type,-->
<!--</if>-->
<!--<if test="version != null">-->
<!--version,-->
<!--</if>-->
<!--<if test="delete_flag != null">-->
<!--delete_flag,-->
<!--</if>-->
<!--<if test="created_id != null">-->
<!--created_id,-->
<!--</if>-->
<!--<if test="created_time != null">-->
<!--created_time,-->
<!--</if>-->
<!--<if test="modified_id != null">-->
<!--modified_id,-->
<!--</if>-->
<!--<if test="modified_time != null">-->
<!--modified_time,-->
<!--</if>-->
<!--<if test="agreement_content != null">-->
<!--agreement_content,-->
<!--</if>-->
<!--</trim>-->
<!--<trim prefix="values (" suffix=")" suffixOverrides=",">-->
<!--<if test="id != null">-->
<!--#{id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="agreement_type != null">-->
<!--#{agreement_type,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="version != null">-->
<!--#{version,jdbcType=VARCHAR},-->
<!--</if>-->
<!--<if test="delete_flag != null">-->
<!--#{delete_flag,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="created_id != null">-->
<!--#{created_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="created_time != null">-->
<!--#{created_time,jdbcType=TIMESTAMP},-->
<!--</if>-->
<!--<if test="modified_id != null">-->
<!--#{modified_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="modified_time != null">-->
<!--#{modified_time,jdbcType=TIMESTAMP},-->
<!--</if>-->
<!--<if test="agreement_content != null">-->
<!--#{agreement_content,jdbcType=LONGVARCHAR},-->
<!--</if>-->
<!--</trim>-->
<!--</insert>-->
<!--<update id="updateByPrimaryKeySelective"-->
<!--parameterType="com.pica.cloud.account.account.server.entity.AgreementEntity">-->
<!--update doctor_agreement-->
<!--<set>-->
<!--<if test="agreement_type != null">-->
<!--agreement_type = #{agreement_type,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="version != null">-->
<!--version = #{version,jdbcType=VARCHAR},-->
<!--</if>-->
<!--<if test="delete_flag != null">-->
<!--delete_flag = #{delete_flag,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="created_id != null">-->
<!--created_id = #{created_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="created_time != null">-->
<!--created_time = #{created_time,jdbcType=TIMESTAMP},-->
<!--</if>-->
<!--<if test="modified_id != null">-->
<!--modified_id = #{modified_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="modified_time != null">-->
<!--modified_time = #{modified_time,jdbcType=TIMESTAMP},-->
<!--</if>-->
<!--<if test="agreement_content != null">-->
<!--agreement_content = #{agreement_content,jdbcType=LONGVARCHAR},-->
<!--</if>-->
<!--</set>-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</update>-->
<!--<update id="updateByPrimaryKeyWithBLOBs"-->
<!--parameterType="com.pica.cloud.account.account.server.entity.AgreementEntity">-->
<!--update doctor_agreement-->
<!--set agreement_type = #{agreement_type,jdbcType=INTEGER},-->
<!--version = #{version,jdbcType=VARCHAR},-->
<!--delete_flag = #{delete_flag,jdbcType=INTEGER},-->
<!--created_id = #{created_id,jdbcType=BIGINT},-->
<!--created_time = #{created_time,jdbcType=TIMESTAMP},-->
<!--modified_id = #{modified_id,jdbcType=BIGINT},-->
<!--modified_time = #{modified_time,jdbcType=TIMESTAMP},-->
<!--agreement_content = #{agreement_content,jdbcType=LONGVARCHAR}-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</update>-->
<!--<update id="updateByPrimaryKey" parameterType="com.pica.cloud.account.account.server.entity.AgreementEntity">-->
<!--update doctor_agreement-->
<!--set agreement_type = #{agreement_type,jdbcType=INTEGER},-->
<!--version = #{version,jdbcType=VARCHAR},-->
<!--delete_flag = #{delete_flag,jdbcType=INTEGER},-->
<!--created_id = #{created_id,jdbcType=BIGINT},-->
<!--created_time = #{created_time,jdbcType=TIMESTAMP},-->
<!--modified_id = #{modified_id,jdbcType=BIGINT},-->
<!--modified_time = #{modified_time,jdbcType=TIMESTAMP}-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</update>-->
<!--</mapper>-->
\ No newline at end of file
<!--<?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.pica.cloud.account.account.server.mapper.AgreementLogEntityMapper" >-->
<!--<resultMap id="BaseResultMap" type="com.pica.cloud.account.account.server.entity.AgreementLogEntity" >-->
<!--<id column="id" property="id" jdbcType="BIGINT" />-->
<!--<result column="doctor_id" property="doctor_id" jdbcType="BIGINT" />-->
<!--<result column="agreement_type" property="agreement_type" jdbcType="INTEGER" />-->
<!--<result column="version" property="version" jdbcType="VARCHAR" />-->
<!--<result column="delete_flag" property="delete_flag" jdbcType="INTEGER" />-->
<!--<result column="created_id" property="created_id" jdbcType="BIGINT" />-->
<!--<result column="created_time" property="created_time" jdbcType="TIMESTAMP" />-->
<!--<result column="modified_id" property="modified_id" jdbcType="BIGINT" />-->
<!--<result column="modified_time" property="modified_time" jdbcType="TIMESTAMP" />-->
<!--</resultMap>-->
<!--<sql id="Base_Column_List" >-->
<!--id, doctor_id, agreement_type, version, delete_flag, created_id, created_time, modified_id, -->
<!--modified_time-->
<!--</sql>-->
<!--<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Long" >-->
<!--select -->
<!--<include refid="Base_Column_List" />-->
<!--from doctor_agreement_log-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</select>-->
<!--<delete id="deleteByPrimaryKey" parameterType="java.lang.Long" >-->
<!--delete from doctor_agreement_log-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</delete>-->
<!--<insert id="insert" parameterType="com.pica.cloud.account.account.server.entity.AgreementLogEntity" >-->
<!--insert into doctor_agreement_log (id, doctor_id, agreement_type, -->
<!--version, delete_flag, created_id, -->
<!--created_time, modified_id, modified_time)-->
<!--values (#{id,jdbcType=BIGINT}, #{doctor_id,jdbcType=BIGINT}, #{agreement_type,jdbcType=INTEGER}, -->
<!--#{version,jdbcType=VARCHAR}, #{delete_flag,jdbcType=INTEGER}, #{created_id,jdbcType=BIGINT}, -->
<!--#{created_time,jdbcType=TIMESTAMP}, #{modified_id,jdbcType=BIGINT}, #{modified_time,jdbcType=TIMESTAMP}-->
<!--)-->
<!--</insert>-->
<!--<insert id="insertSelective" parameterType="com.pica.cloud.account.account.server.entity.AgreementLogEntity" >-->
<!--insert into doctor_agreement_log-->
<!--<trim prefix="(" suffix=")" suffixOverrides="," >-->
<!--<if test="id != null" >-->
<!--id,-->
<!--</if>-->
<!--<if test="doctor_id != null" >-->
<!--doctor_id,-->
<!--</if>-->
<!--<if test="agreement_type != null" >-->
<!--agreement_type,-->
<!--</if>-->
<!--<if test="version != null" >-->
<!--version,-->
<!--</if>-->
<!--<if test="delete_flag != null" >-->
<!--delete_flag,-->
<!--</if>-->
<!--<if test="created_id != null" >-->
<!--created_id,-->
<!--</if>-->
<!--<if test="created_time != null" >-->
<!--created_time,-->
<!--</if>-->
<!--<if test="modified_id != null" >-->
<!--modified_id,-->
<!--</if>-->
<!--<if test="modified_time != null" >-->
<!--modified_time,-->
<!--</if>-->
<!--</trim>-->
<!--<trim prefix="values (" suffix=")" suffixOverrides="," >-->
<!--<if test="id != null" >-->
<!--#{id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="doctor_id != null" >-->
<!--#{doctor_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="agreement_type != null" >-->
<!--#{agreement_type,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="version != null" >-->
<!--#{version,jdbcType=VARCHAR},-->
<!--</if>-->
<!--<if test="delete_flag != null" >-->
<!--#{delete_flag,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="created_id != null" >-->
<!--#{created_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="created_time != null" >-->
<!--#{created_time,jdbcType=TIMESTAMP},-->
<!--</if>-->
<!--<if test="modified_id != null" >-->
<!--#{modified_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="modified_time != null" >-->
<!--#{modified_time,jdbcType=TIMESTAMP},-->
<!--</if>-->
<!--</trim>-->
<!--</insert>-->
<!--<update id="updateByPrimaryKeySelective" parameterType="com.pica.cloud.account.account.server.entity.AgreementLogEntity" >-->
<!--update doctor_agreement_log-->
<!--<set >-->
<!--<if test="doctor_id != null" >-->
<!--doctor_id = #{doctor_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="agreement_type != null" >-->
<!--agreement_type = #{agreement_type,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="version != null" >-->
<!--version = #{version,jdbcType=VARCHAR},-->
<!--</if>-->
<!--<if test="delete_flag != null" >-->
<!--delete_flag = #{delete_flag,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="created_id != null" >-->
<!--created_id = #{created_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="created_time != null" >-->
<!--created_time = #{created_time,jdbcType=TIMESTAMP},-->
<!--</if>-->
<!--<if test="modified_id != null" >-->
<!--modified_id = #{modified_id,jdbcType=BIGINT},-->
<!--</if>-->
<!--<if test="modified_time != null" >-->
<!--modified_time = #{modified_time,jdbcType=TIMESTAMP},-->
<!--</if>-->
<!--</set>-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</update>-->
<!--<update id="updateByPrimaryKey" parameterType="com.pica.cloud.account.account.server.entity.AgreementLogEntity" >-->
<!--update doctor_agreement_log-->
<!--set doctor_id = #{doctor_id,jdbcType=BIGINT},-->
<!--agreement_type = #{agreement_type,jdbcType=INTEGER},-->
<!--version = #{version,jdbcType=VARCHAR},-->
<!--delete_flag = #{delete_flag,jdbcType=INTEGER},-->
<!--created_id = #{created_id,jdbcType=BIGINT},-->
<!--created_time = #{created_time,jdbcType=TIMESTAMP},-->
<!--modified_id = #{modified_id,jdbcType=BIGINT},-->
<!--modified_time = #{modified_time,jdbcType=TIMESTAMP}-->
<!--where id = #{id,jdbcType=BIGINT}-->
<!--</update>-->
<!--<select id="getLatestProtocolId" resultType="java.lang.Integer" parameterType="java.lang.Integer">-->
<!--select id-->
<!--from p_protocol-->
<!--where type = #{type} and delete_flag = 1-->
<!--order by id desc-->
<!--limit 1-->
<!--</select>-->
<!--<insert id="insertProtocolLog" parameterType="com.pica.cloud.account.account.server.entity.PProtocolLog" >-->
<!--insert into p_protocol_log-->
<!--<trim prefix="(" suffix=")" suffixOverrides="," >-->
<!--<if test="userId != null" >-->
<!--user_id,-->
<!--</if>-->
<!--<if test="protocolId != null" >-->
<!--protocol_id,-->
<!--</if>-->
<!--<if test="status != null" >-->
<!--status,-->
<!--</if>-->
<!--<if test="type != null" >-->
<!--type,-->
<!--</if>-->
<!--<if test="userType != null" >-->
<!--user_type,-->
<!--</if>-->
<!--delete_flag,-->
<!--<if test="createdId != null" >-->
<!--created_id,-->
<!--</if>-->
<!--created_time,-->
<!--<if test="modifiedId != null" >-->
<!--modified_id,-->
<!--</if>-->
<!--modified_time,-->
<!--</trim>-->
<!--<trim prefix="values (" suffix=")" suffixOverrides="," >-->
<!--<if test="userId != null" >-->
<!--#{userId,jdbcType=VARCHAR},-->
<!--</if>-->
<!--<if test="protocolId != null" >-->
<!--#{protocolId,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="status != null" >-->
<!--#{status,jdbcType=SMALLINT},-->
<!--</if>-->
<!--<if test="type != null" >-->
<!--#{type,jdbcType=INTEGER},-->
<!--</if>-->
<!--<if test="userType != null" >-->
<!--#{userType,jdbcType=INTEGER},-->
<!--</if>-->
<!--1,-->
<!--<if test="createdId != null" >-->
<!--#{createdId,jdbcType=INTEGER},-->
<!--</if>-->
<!--now(),-->
<!--<if test="modifiedId != null" >-->
<!--#{modifiedId,jdbcType=INTEGER},-->
<!--</if>-->
<!--now()-->
<!--</trim>-->
<!--</insert>-->
<!--<update id="updateSignNum" parameterType="java.lang.Integer">-->
<!--update p_protocol set sign_num = sign_num + 1 where id = #{id}-->
<!--</update>-->
<!--</mapper>-->
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册