结算改价

This commit is contained in:
mashuai 2024-12-05 18:12:21 +08:00
parent fb18a63163
commit 365036ca50
3 changed files with 6 additions and 1 deletions

View File

@ -27,6 +27,9 @@ public class LeaseRepairRecord extends BaseEntity implements Serializable {
private Integer id;
@ApiModelProperty(value = "前端是否选中此字段仅供前端使用默认0")
private Integer isCheck = 0;
@ApiModelProperty(value = "订单id")
private String orderId;

View File

@ -66,6 +66,7 @@ public class LeaseRepairRecordServiceImpl implements LeaseRepairRecordService {
if (leaseRepairVo.getOrderId() != null) {
LeaseRecordDto leaseRecordDto = getById(leaseRepairVo);
leaseRepairVo.setTotalCost(leaseRecordDto.getTotalCost());
leaseRepairVo.setIsChangePrice(leaseRecordDto.getIsChangePrice());
}
}

View File

@ -244,7 +244,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
hh.take_over_user,
hh.take_over_time,
hh.rent_over_user,
hh.rent_over_time
hh.rent_over_time,
hh.change_cost as changeCost
FROM
ma_order_details hh
LEFT JOIN ma_order_info moi ON hh.order_id = moi.order_id