Compare commits

...

4 Commits

Author SHA1 Message Date
liang.chao 17f52add11 Merge branch 'lc20240816' 2024-08-16 17:21:55 +08:00
liang.chao b07473f2ea 结算代码提交 2024-08-16 17:21:36 +08:00
liang.chao 8f0ae7aec0 Merge branch 'lc20240816' 2024-08-16 17:20:55 +08:00
liang.chao c9b28aff01 结算代码提交 2024-08-16 17:20:31 +08:00
2 changed files with 4 additions and 4 deletions

View File

@ -134,8 +134,6 @@ public class AgreementInfo extends BaseEntity {
private Integer protocol; private Integer protocol;
@ApiModelProperty(value = "结算总费用") @ApiModelProperty(value = "结算总费用")
private String cost; private String cost;
@ApiModelProperty(value = "结算状态")
private String sltStatus;
@ApiModelProperty(value = "费用承担方(01项目,03分包)") @ApiModelProperty(value = "费用承担方(01项目,03分包)")
private String costBearingParty; private String costBearingParty;
private String codeNum; private String codeNum;
@ -143,6 +141,8 @@ public class AgreementInfo extends BaseEntity {
* 是否结算 * 是否结算
*/ */
private Integer isSlt; private Integer isSlt;
@ApiModelProperty(value = "结算状态")
private Integer sltStatus;
/** /**
* 导出选中列表 * 导出选中列表

View File

@ -131,8 +131,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="projectId != null and projectId != ''"> <if test="projectId != null and projectId != ''">
and bp.lot_id = #{projectId} and bp.lot_id = #{projectId}
</if> </if>
<if test="isSlt != null"> <if test="sltStatus != null">
and bai.is_slt = #{isSlt} and bai.is_slt = #{sltStatus}
</if> </if>
ORDER BY bai.agreement_id desc ORDER BY bai.agreement_id desc
</select> </select>