@@ -39,6 +39,7 @@ public class FeeReceiptDtoNew extends PageDto implements Serializable {
private String endTime; //给公摊费使用的时间
private String cycle; //给公摊费使用的数量
+
private Date createTime;
private String statusCd = "0";
@@ -24,6 +24,7 @@
from fee_receipt_detail t
left join pay_fee_detail pfd on t.detail_id = pfd.detail_id and pfd.status_cd = '0' and t.community_id = pfd.community_id
where 1 =1
<if test="area !=null and area != ''">
and t.area= #{area}
</if>
@@ -239,4 +239,5 @@ public class FeeReceiptApi {
feeReceiptDetailDto.setReceiptId(receiptId);
return getFeeReceiptDetailBMOImpl.get(feeReceiptDetailDto);
}