| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <?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.chinaitop.depot.business.mapper.BusinessContractPayReceviceMapper" >
- <resultMap id="BaseResultMap" type="com.chinaitop.depot.business.model.BusinessContractPayRecevice" >
- <id column="id" property="id" jdbcType="INTEGER" />
- <result column="zid" property="zid" jdbcType="INTEGER" />
- <result column="contract_num" property="contractNum" jdbcType="VARCHAR" />
- <result column="contract_title" property="contractTitle" jdbcType="VARCHAR" />
- <result column="contract_type" property="contractType" jdbcType="INTEGER" />
- <result column="pay_status" property="payStatus" jdbcType="INTEGER" />
- <result column="money" property="money" jdbcType="VARCHAR" />
- <result column="time" property="time" jdbcType="TIMESTAMP" />
- </resultMap>
- <sql id="Example_Where_Clause" >
- <where >
- <foreach collection="oredCriteria" item="criteria" separator="or" >
- <if test="criteria.valid" >
- <trim prefix="(" suffix=")" prefixOverrides="and" >
- <foreach collection="criteria.criteria" item="criterion" >
- <choose >
- <when test="criterion.noValue" >
- and ${criterion.condition}
- </when>
- <when test="criterion.singleValue" >
- and ${criterion.condition} #{criterion.value}
- </when>
- <when test="criterion.betweenValue" >
- and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
- </when>
- <when test="criterion.listValue" >
- and ${criterion.condition}
- <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
- #{listItem}
- </foreach>
- </when>
- </choose>
- </foreach>
- </trim>
- </if>
- </foreach>
- </where>
- </sql>
- <sql id="Update_By_Example_Where_Clause" >
- <where >
- <foreach collection="example.oredCriteria" item="criteria" separator="or" >
- <if test="criteria.valid" >
- <trim prefix="(" suffix=")" prefixOverrides="and" >
- <foreach collection="criteria.criteria" item="criterion" >
- <choose >
- <when test="criterion.noValue" >
- and ${criterion.condition}
- </when>
- <when test="criterion.singleValue" >
- and ${criterion.condition} #{criterion.value}
- </when>
- <when test="criterion.betweenValue" >
- and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
- </when>
- <when test="criterion.listValue" >
- and ${criterion.condition}
- <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
- #{listItem}
- </foreach>
- </when>
- </choose>
- </foreach>
- </trim>
- </if>
- </foreach>
- </where>
- </sql>
- <sql id="Base_Column_List" >
- id, zid, contract_num, contract_title, contract_type, pay_status, money, time
- </sql>
- <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.chinaitop.depot.business.model.BusinessContractPayReceviceExample" >
- select
- <if test="distinct" >
- distinct
- </if>
- <include refid="Base_Column_List" />
- from business_contract_pay_recevice
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- <if test="orderByClause != null" >
- order by ${orderByClause}
- </if>
- </select>
- <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
- select
- <include refid="Base_Column_List" />
- from business_contract_pay_recevice
- where id = #{id,jdbcType=INTEGER}
- </select>
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
- delete from business_contract_pay_recevice
- where id = #{id,jdbcType=INTEGER}
- </delete>
- <delete id="deleteByExample" parameterType="com.chinaitop.depot.business.model.BusinessContractPayReceviceExample" >
- delete from business_contract_pay_recevice
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </delete>
- <insert id="insert" parameterType="com.chinaitop.depot.business.model.BusinessContractPayRecevice" >
- insert into business_contract_pay_recevice (id, zid, contract_num,
- contract_title, contract_type, pay_status,
- money, time)
- values (#{id,jdbcType=INTEGER}, #{zid,jdbcType=INTEGER}, #{contractNum,jdbcType=VARCHAR},
- #{contractTitle,jdbcType=VARCHAR}, #{contractType,jdbcType=INTEGER}, #{payStatus,jdbcType=INTEGER},
- #{money,jdbcType=VARCHAR}, #{time,jdbcType=TIMESTAMP})
- </insert>
- <insert id="insertSelective" parameterType="com.chinaitop.depot.business.model.BusinessContractPayRecevice" >
- insert into business_contract_pay_recevice
- <trim prefix="(" suffix=")" suffixOverrides="," >
- <if test="id != null" >
- id,
- </if>
- <if test="zid != null" >
- zid,
- </if>
- <if test="contractNum != null" >
- contract_num,
- </if>
- <if test="contractTitle != null" >
- contract_title,
- </if>
- <if test="contractType != null" >
- contract_type,
- </if>
- <if test="payStatus != null" >
- pay_status,
- </if>
- <if test="money != null" >
- money,
- </if>
- <if test="time != null" >
- time,
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides="," >
- <if test="id != null" >
- #{id,jdbcType=INTEGER},
- </if>
- <if test="zid != null" >
- #{zid,jdbcType=INTEGER},
- </if>
- <if test="contractNum != null" >
- #{contractNum,jdbcType=VARCHAR},
- </if>
- <if test="contractTitle != null" >
- #{contractTitle,jdbcType=VARCHAR},
- </if>
- <if test="contractType != null" >
- #{contractType,jdbcType=INTEGER},
- </if>
- <if test="payStatus != null" >
- #{payStatus,jdbcType=INTEGER},
- </if>
- <if test="money != null" >
- #{money,jdbcType=VARCHAR},
- </if>
- <if test="time != null" >
- #{time,jdbcType=TIMESTAMP},
- </if>
- </trim>
- </insert>
- <select id="countByExample" parameterType="com.chinaitop.depot.business.model.BusinessContractPayReceviceExample" resultType="java.lang.Integer" >
- select count(*) from business_contract_pay_recevice
- <if test="_parameter != null" >
- <include refid="Example_Where_Clause" />
- </if>
- </select>
- <update id="updateByExampleSelective" parameterType="map" >
- update business_contract_pay_recevice
- <set >
- <if test="record.id != null" >
- id = #{record.id,jdbcType=INTEGER},
- </if>
- <if test="record.zid != null" >
- zid = #{record.zid,jdbcType=INTEGER},
- </if>
- <if test="record.contractNum != null" >
- contract_num = #{record.contractNum,jdbcType=VARCHAR},
- </if>
- <if test="record.contractTitle != null" >
- contract_title = #{record.contractTitle,jdbcType=VARCHAR},
- </if>
- <if test="record.contractType != null" >
- contract_type = #{record.contractType,jdbcType=INTEGER},
- </if>
- <if test="record.payStatus != null" >
- pay_status = #{record.payStatus,jdbcType=INTEGER},
- </if>
- <if test="record.money != null" >
- money = #{record.money,jdbcType=VARCHAR},
- </if>
- <if test="record.time != null" >
- time = #{record.time,jdbcType=TIMESTAMP},
- </if>
- </set>
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByExample" parameterType="map" >
- update business_contract_pay_recevice
- set id = #{record.id,jdbcType=INTEGER},
- zid = #{record.zid,jdbcType=INTEGER},
- contract_num = #{record.contractNum,jdbcType=VARCHAR},
- contract_title = #{record.contractTitle,jdbcType=VARCHAR},
- contract_type = #{record.contractType,jdbcType=INTEGER},
- pay_status = #{record.payStatus,jdbcType=INTEGER},
- money = #{record.money,jdbcType=VARCHAR},
- time = #{record.time,jdbcType=TIMESTAMP}
- <if test="_parameter != null" >
- <include refid="Update_By_Example_Where_Clause" />
- </if>
- </update>
- <update id="updateByPrimaryKeySelective" parameterType="com.chinaitop.depot.business.model.BusinessContractPayRecevice" >
- update business_contract_pay_recevice
- <set >
- <if test="zid != null" >
- zid = #{zid,jdbcType=INTEGER},
- </if>
- <if test="contractNum != null" >
- contract_num = #{contractNum,jdbcType=VARCHAR},
- </if>
- <if test="contractTitle != null" >
- contract_title = #{contractTitle,jdbcType=VARCHAR},
- </if>
- <if test="contractType != null" >
- contract_type = #{contractType,jdbcType=INTEGER},
- </if>
- <if test="payStatus != null" >
- pay_status = #{payStatus,jdbcType=INTEGER},
- </if>
- <if test="money != null" >
- money = #{money,jdbcType=VARCHAR},
- </if>
- <if test="time != null" >
- time = #{time,jdbcType=TIMESTAMP},
- </if>
- </set>
- where id = #{id,jdbcType=INTEGER}
- </update>
- <update id="updateByPrimaryKey" parameterType="com.chinaitop.depot.business.model.BusinessContractPayRecevice" >
- update business_contract_pay_recevice
- set zid = #{zid,jdbcType=INTEGER},
- contract_num = #{contractNum,jdbcType=VARCHAR},
- contract_title = #{contractTitle,jdbcType=VARCHAR},
- contract_type = #{contractType,jdbcType=INTEGER},
- pay_status = #{payStatus,jdbcType=INTEGER},
- money = #{money,jdbcType=VARCHAR},
- time = #{time,jdbcType=TIMESTAMP}
- where id = #{id,jdbcType=INTEGER}
- </update>
- </mapper>
|