完善合同管理;

新增结算管理
This commit is contained in:
2023-06-12 01:32:34 +08:00
parent 385bfb96b8
commit 8307a16689
35 changed files with 1964 additions and 7 deletions

View File

@@ -0,0 +1,62 @@
<?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.gxwebsoft.tower.mapper.TowerSettleMapper">
<!-- 关联查询sql -->
<sql id="selectSql">
SELECT a.*
FROM tower_settle a
<where>
<if test="param.settleId != null">
AND a.settle_id = #{param.settleId}
</if>
<if test="param.settleNo != null">
AND a.settle_no LIKE CONCAT('%', #{param.settleNo}, '%')
</if>
<if test="param.contractId != null">
AND a.contract_id = #{param.contractId}
</if>
<if test="param.startDate != null">
AND a.start_date LIKE CONCAT('%', #{param.startDate}, '%')
</if>
<if test="param.endDate != null">
AND a.end_date LIKE CONCAT('%', #{param.endDate}, '%')
</if>
<if test="param.settleMethod != null">
AND a.settle_method = #{param.settleMethod}
</if>
<if test="param.extendMonthDate != null">
AND a.extend_month_date = #{param.extendMonthDate}
</if>
<if test="param.status != null">
AND a.status = #{param.status}
</if>
<if test="param.userId != null">
AND a.user_id = #{param.userId}
</if>
<if test="param.deleted != null">
AND a.deleted = #{param.deleted}
</if>
<if test="param.deleted == null">
AND a.deleted = 0
</if>
<if test="param.createTimeStart != null">
AND a.create_time &gt;= #{param.createTimeStart}
</if>
<if test="param.createTimeEnd != null">
AND a.create_time &lt;= #{param.createTimeEnd}
</if>
</where>
</sql>
<!-- 分页查询 -->
<select id="selectPageRel" resultType="com.gxwebsoft.tower.entity.TowerSettle">
<include refid="selectSql"></include>
</select>
<!-- 查询全部 -->
<select id="selectListRel" resultType="com.gxwebsoft.tower.entity.TowerSettle">
<include refid="selectSql"></include>
</select>
</mapper>