Edit D:\rfid\libsystem\WEB-INF\classes\com\jishen\libsystem\mapping\ParSysOperatorMapper.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.jishen.libsystem.dao.ParSysOperatorMapper"> <resultMap id="BaseResultMap" type="com.jishen.libsystem.entity.ParSysOperator"> <id column="ID" jdbcType="DECIMAL" property="id" /> <result column="LIBCODE" jdbcType="VARCHAR" property="libcode" /> <result column="ACCOUNT" jdbcType="VARCHAR" property="account" /> <result column="NAME" jdbcType="VARCHAR" property="name" /> <result column="PASSWORD" jdbcType="VARCHAR" property="password" /> <result column="AUTHORITYGROUP" jdbcType="VARCHAR" property="authoritygroup" /> <result column="NOTE" jdbcType="VARCHAR" property="note" /> <result column="PARAMJSON" jdbcType="VARCHAR" property="paramjson" /> <result column="OPERTYPE" jdbcType="VARCHAR" property="opertype" /> <result column="SHOWACQLOCCODE" jdbcType="VARCHAR" property="showacqloccode" /> <result column="SHOWRDRTYPE" jdbcType="VARCHAR" property="showrdrtype" /> <result column="SHOWSYSID" jdbcType="VARCHAR" property="showsysid" /> </resultMap> <sql id="Base_Column_List"> ID, LIBCODE, ACCOUNT, NAME, PASSWORD, AUTHORITYGROUP, NOTE, PARAMJSON, OPERTYPE, SHOWACQLOCCODE, SHOWRDRTYPE, SHOWSYSID </sql> <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from PAR_SYS_OPERATOR where ID = #{id,jdbcType=DECIMAL} </select> <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> delete from PAR_SYS_OPERATOR where ID = #{id,jdbcType=DECIMAL} </delete> <insert id="insert" parameterType="com.jishen.libsystem.entity.ParSysOperator"> insert into PAR_SYS_OPERATOR (ID, LIBCODE, ACCOUNT, NAME, PASSWORD, AUTHORITYGROUP, NOTE, PARAMJSON, OPERTYPE, SHOWACQLOCCODE, SHOWRDRTYPE, SHOWSYSID ) values (#{id,jdbcType=DECIMAL}, #{libcode,jdbcType=VARCHAR}, #{account,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{authoritygroup,jdbcType=VARCHAR}, #{note,jdbcType=VARCHAR}, #{paramjson,jdbcType=VARCHAR}, #{opertype,jdbcType=VARCHAR}, #{showacqloccode,jdbcType=VARCHAR}, #{showrdrtype,jdbcType=VARCHAR}, #{showsysid,jdbcType=VARCHAR} ) </insert> <insert id="insertSelective" parameterType="com.jishen.libsystem.entity.ParSysOperator"> <selectKey keyProperty="id" resultType="java.lang.Long" order="BEFORE"> select PAR_SYS_OPERATOR_SEQ.nextval a FROM dual </selectKey> insert into PAR_SYS_OPERATOR <trim prefix="(" suffix=")" suffixOverrides=","> <if test="id != null"> ID, </if> <if test="libcode != null"> LIBCODE, </if> <if test="account != null"> ACCOUNT, </if> <if test="name != null"> NAME, </if> <if test="password != null"> PASSWORD, </if> <if test="authoritygroup != null"> AUTHORITYGROUP, </if> <if test="note != null"> NOTE, </if> <if test="paramjson != null"> PARAMJSON, </if> <if test="opertype != null"> OPERTYPE, </if> <if test="showacqloccode != null"> SHOWACQLOCCODE, </if> <if test="showrdrtype != null"> SHOWRDRTYPE, </if> <if test="showsysid != null"> SHOWSYSID, </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="id != null"> #{id,jdbcType=DECIMAL}, </if> <if test="libcode != null"> #{libcode,jdbcType=VARCHAR}, </if> <if test="account != null"> #{account,jdbcType=VARCHAR}, </if> <if test="name != null"> #{name,jdbcType=VARCHAR}, </if> <if test="password != null"> #{password,jdbcType=VARCHAR}, </if> <if test="authoritygroup != null"> #{authoritygroup,jdbcType=VARCHAR}, </if> <if test="note != null"> #{note,jdbcType=VARCHAR}, </if> <if test="paramjson != null"> #{paramjson,jdbcType=VARCHAR}, </if> <if test="opertype != null"> #{opertype,jdbcType=VARCHAR}, </if> <if test="showacqloccode != null"> #{showacqloccode,jdbcType=VARCHAR}, </if> <if test="showrdrtype != null"> #{showrdrtype,jdbcType=VARCHAR}, </if> <if test="showsysid != null"> #{showsysid,jdbcType=VARCHAR}, </if> </trim> </insert> <update id="updateByPrimaryKeySelective" parameterType="com.jishen.libsystem.entity.ParSysOperator"> update PAR_SYS_OPERATOR <set> <if test="libcode != null"> LIBCODE = #{libcode,jdbcType=VARCHAR}, </if> <if test="account != null"> ACCOUNT = #{account,jdbcType=VARCHAR}, </if> <if test="name != null"> NAME = #{name,jdbcType=VARCHAR}, </if> <if test="password != null"> PASSWORD = #{password,jdbcType=VARCHAR}, </if> <if test="authoritygroup != null"> AUTHORITYGROUP = #{authoritygroup,jdbcType=VARCHAR}, </if> <if test="note != null"> NOTE = #{note,jdbcType=VARCHAR}, </if> <if test="paramjson != null"> PARAMJSON = #{paramjson,jdbcType=VARCHAR}, </if> <if test="opertype != null"> OPERTYPE = #{opertype,jdbcType=VARCHAR}, </if> <if test="showacqloccode != null"> SHOWACQLOCCODE = #{showacqloccode,jdbcType=VARCHAR}, </if> <if test="showrdrtype != null"> SHOWRDRTYPE = #{showrdrtype,jdbcType=VARCHAR}, </if> <if test="showsysid != null"> SHOWSYSID = #{showsysid,jdbcType=VARCHAR}, </if> </set> where ID = #{id,jdbcType=DECIMAL} </update> <update id="updateByPrimaryKey" parameterType="com.jishen.libsystem.entity.ParSysOperator"> update PAR_SYS_OPERATOR set LIBCODE = #{libcode,jdbcType=VARCHAR}, ACCOUNT = #{account,jdbcType=VARCHAR}, NAME = #{name,jdbcType=VARCHAR}, PASSWORD = #{password,jdbcType=VARCHAR}, AUTHORITYGROUP = #{authoritygroup,jdbcType=VARCHAR}, NOTE = #{note,jdbcType=VARCHAR}, PARAMJSON = #{paramjson,jdbcType=VARCHAR}, OPERTYPE = #{opertype,jdbcType=VARCHAR}, SHOWACQLOCCODE = #{showacqloccode,jdbcType=VARCHAR}, SHOWRDRTYPE = #{showrdrtype,jdbcType=VARCHAR}, SHOWSYSID = #{showsysid,jdbcType=VARCHAR} where ID = #{id,jdbcType=DECIMAL} </update> <select id="listSelective" parameterType="com.jishen.libsystem.entity.ParSysOperator" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from PAR_SYS_OPERATOR where 1=1 <if test="libcode != null"> and LIBCODE = #{libcode,jdbcType=VARCHAR} </if> <if test="account != null"> and ACCOUNT = #{account,jdbcType=VARCHAR} </if> <if test="name != null"> and NAME = #{name,jdbcType=VARCHAR} </if> <if test="password != null"> and PASSWORD = #{password,jdbcType=VARCHAR} </if> <if test="authoritygroup != null"> and AUTHORITYGROUP = #{authoritygroup,jdbcType=VARCHAR} </if> </select> <select id="listWithCondition" parameterType="com.jishen.common.SrchLimitEntity" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from PAR_SYS_OPERATOR where 1=1 <include refid="common.condition"></include> </select> </mapper>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de