Compare commits
4 Commits
6ef5b3693a
...
17f52add11
| Author | SHA1 | Date |
|---|---|---|
|
|
17f52add11 | |
|
|
b07473f2ea | |
|
|
8f0ae7aec0 | |
|
|
c9b28aff01 |
|
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 导出选中列表
|
* 导出选中列表
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue