123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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.jkcredit.invoice.mapper.customer.CustomerOperMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.customer.CustomerOper">
- <id column="id" property="id"/>
- <result column="customerName" property="customerName"/>
- <result column="customerPhone" property="customerPhone"/>
- <result column="company" property="company"/>
- <result column="createTime" property="createTime"/>
- <result column="batchNumber" property="batchNumber"/>
- <result column="operType" property="operType"/>
- </resultMap>
- <sql id="baseSql">
- id,
- customerName,
- customerPhone,
- company,
- createTime,
- batchNumber,
- operType
- </sql>
- <select id="selectAllByPage" resultMap="BaseResultMap">
- select
- <include refid="baseSql" />
- from t_cusomerOper
- <where>
- <if test="customerOper.customerName != null and customerOper.customerName != ''">
- AND customerName LIKE CONCAT('%',#{customerOper.customerName},'%')
- </if>
- <if test="customerOper.operType != null and customerOper.operType != ''">
- AND operType = #{customerOper.operType}
- </if>
- </where>
- </select>
- <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerOper" >
- insert into t_cusomerOper (
- customerName,
- customerPhone,
- company,
- createTime,
- batchNumber,
- operType
- )
- values ( #{customerName,jdbcType=VARCHAR}, #{customerPhone,jdbcType=VARCHAR},
- #{company,jdbcType=VARCHAR},#{createTime,jdbcType=VARCHAR}, #{batchNumber,jdbcType=INTEGER},
- #{operType,jdbcType=INTEGER}
- )
- </insert>
- </mapper>
|