zoukankan      html  css  js  c++  java
  • mybatis的if标签判断子类属性-There is no getter for property named 'export' in

    1

     1 <select id="findList" resultType="BndExport">
     2         SELECT 
     3             <include refid="bndExportColumns"/>
     4         FROM bnd_export a
     5         <include refid="bndExportJoins"/>
     6         <where>
     7             a.del_flag = #{DEL_FLAG_NORMAL}
     8             <if test="createDate != null and createDate != ''">
     9                 AND a.create_date = #{createDate}
    10             </if>
    11             <if test="createDateStart!=null and createDateStart!='' and createDateEnd!=null and createDateEnd!=''">
    12                 AND a.create_date between to_date('${createDateStart}','yyyy-mm-dd hh24:mi:ss') and to_date('${createDateEnd}','yyyy-mm-dd hh24:mi:ss')
    13             </if>
    14             <if test="company != null and company != ''">
    15                 AND a.company = #{company}
    16             </if>
    17             <if test="bndExportFreight != null and bndExportFreight != '' and bndExportFreight.vessel != null and bndExportFreight.vessel != ''">
    18                 AND b.vessel= #{bndExportFreight.vessel}
    19             </if>
    20             <if test="bndExportFreight != null and bndExportFreight != '' and bndExportFreight.voyage != null and bndExportFreight.voyage != ''">
    21                 AND b.vessel= #{bndExportFreight.voyage}
    22             </if>
    23         </where>
  • 相关阅读:
    Django contenttypes 组件
    CPU 的工作原理
    Redis基础
    面向对象中的__slots__
    DRF 的解析器和渲染器
    DRF的认证、权限 和 限制
    DRF中的版本控制
    REST framework 视图
    Java多线程(1):3种常用的实现多线程类的方法
    Java多线程(2):线程加入/join()
  • 原文地址:https://www.cnblogs.com/sharpest/p/6066970.html
Copyright © 2011-2022 走看看