|
@@ -12,6 +12,8 @@
|
|
|
<result column="ctype" property="ctype"/>
|
|
|
<result column="invoiceMkTime" property="invoiceMkTime"/>
|
|
|
<result column="companyReferencenum" property="companyReferencenum"/>
|
|
|
+ <result column="companyName" property="companyName"/>
|
|
|
+ <result column="companyLongName" property="companyLongName"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="baseSql">
|
|
@@ -22,18 +24,28 @@
|
|
|
fee,
|
|
|
calTime,
|
|
|
invoiceMkTime,
|
|
|
- companyReferencenum
|
|
|
+ companyReferencenum,
|
|
|
+ companyName,
|
|
|
+ companyLongName
|
|
|
</sql>
|
|
|
<select id="selectAllByPage" resultMap="BaseResultMap">
|
|
|
select
|
|
|
<include refid="baseSql" />
|
|
|
from t_SelfCalculateInfor
|
|
|
+ where 1 = 1
|
|
|
<if test="calculateInfor.customId != null and calculateInfor.customId != ''">
|
|
|
and customId LIKE CONCAT('%',#{calculateInfor.customId},'%')
|
|
|
</if>
|
|
|
+
|
|
|
<if test="calculateInfor.companyReferencenum != null and calculateInfor.companyReferencenum != ''">
|
|
|
and companyReferencenum =#{calculateInfor.companyReferencenum}
|
|
|
</if>
|
|
|
+ <if test="calculateInfor.companyName != null and calculateInfor.companyName != ''">
|
|
|
+ and companyName LIKE CONCAT('%',#{calculateInfor.companyName},'%')
|
|
|
+ </if>
|
|
|
+ <if test="calculateInfor.companyLongName != null and calculateInfor.companyLongName != ''">
|
|
|
+ and companyLongName LIKE CONCAT('%',#{calculateInfor.companyLongName},'%')
|
|
|
+ </if>
|
|
|
<if test="calculateInfor.etcNum != null and calculateInfor.etcNum != ''">
|
|
|
and etcNum = #{calculateInfor.etcNum}
|
|
|
</if>
|
|
@@ -52,10 +64,10 @@
|
|
|
companyNum,
|
|
|
etcNum,
|
|
|
fee,
|
|
|
- calTime,invoiceMkTime,companyReferencenum
|
|
|
+ calTime,invoiceMkTime,companyReferencenum,companyName,companyLongName
|
|
|
)
|
|
|
values ( #{customId,jdbcType=VARCHAR}, #{companyNum,jdbcType=VARCHAR},
|
|
|
- #{etcNum,jdbcType=VARCHAR}, #{fee,jdbcType=DOUBLE},#{calTime,jdbcType=VARCHAR},#{invoiceMkTime,jdbcType=VARCHAR},#{companyReferencenum,jdbcType=VARCHAR}
|
|
|
+ #{etcNum,jdbcType=VARCHAR}, #{fee,jdbcType=DOUBLE},#{calTime,jdbcType=VARCHAR},#{invoiceMkTime,jdbcType=VARCHAR},#{companyReferencenum,jdbcType=VARCHAR},#{companyName,jdbcType=VARCHAR},#{companyLongName,jdbcType=VARCHAR}
|
|
|
)
|
|
|
</insert>
|
|
|
<resultMap id="staticResultMap" type="java.util.Map">
|