CustomerOperMapper.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.jkcredit.invoice.mapper.customer.CustomerOperMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.customer.CustomerOper">
  6. <id column="id" property="id"/>
  7. <result column="customerName" property="customerName"/>
  8. <result column="customerPhone" property="customerPhone"/>
  9. <result column="company" property="company"/>
  10. <result column="createTime" property="createTime"/>
  11. <result column="batchNumber" property="batchNumber"/>
  12. <result column="operType" property="operType"/>
  13. </resultMap>
  14. <sql id="baseSql">
  15. id,
  16. customerName,
  17. customerPhone,
  18. company,
  19. createTime,
  20. batchNumber,
  21. operType
  22. </sql>
  23. <select id="selectAllByPage" resultMap="BaseResultMap">
  24. select
  25. <include refid="baseSql" />
  26. from t_cusomerOper
  27. <where>
  28. <if test="customerOper.customerName != null and customerOper.customerName != ''">
  29. AND customerName LIKE CONCAT('%',#{customerOper.customerName},'%')
  30. </if>
  31. <if test="customerOper.operType != null and customerOper.operType != ''">
  32. AND operType = #{customerOper.operType}
  33. </if>
  34. </where>
  35. </select>
  36. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerOper" >
  37. insert into t_cusomerOper (
  38. customerName,
  39. customerPhone,
  40. company,
  41. createTime,
  42. batchNumber,
  43. operType
  44. )
  45. values ( #{customerName,jdbcType=VARCHAR}, #{customerPhone,jdbcType=VARCHAR},
  46. #{company,jdbcType=VARCHAR},#{createTime,jdbcType=VARCHAR}, #{batchNumber,jdbcType=INTEGER},
  47. #{operType,jdbcType=INTEGER}
  48. )
  49. </insert>
  50. </mapper>