mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
update
This commit is contained in:
@@ -352,7 +352,7 @@ public interface OrderBasicInfoMapper {
|
||||
* @param dto 查询条件
|
||||
* @return 统计结果
|
||||
*/
|
||||
com.jsowell.pile.vo.web.OrderStatisticsVO countBusinessOrderStatistics(QueryOrderDTO dto);
|
||||
OrderStatisticsVO countBusinessOrderStatistics(QueryOrderDTO dto);
|
||||
|
||||
List<OrderBasicInfo> queryRepayOrder(String memberId);
|
||||
|
||||
|
||||
@@ -6325,6 +6325,7 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
|
||||
.map(order -> BusinessOrderListVO.builder()
|
||||
.createTime(order.getCreateTime())
|
||||
.startMode(order.getStartMode())
|
||||
.orderCode(order.getOrderCode())
|
||||
.orderAmount(StringUtils.isNotBlank(order.getOrderAmount())
|
||||
? new BigDecimal(order.getOrderAmount()) : BigDecimal.ZERO)
|
||||
.chargingDegree(StringUtils.isNotBlank(order.getChargingDegree())
|
||||
|
||||
@@ -18,6 +18,12 @@ import java.math.BigDecimal;
|
||||
@NoArgsConstructor
|
||||
@Builder
|
||||
public class BusinessOrderListVO {
|
||||
|
||||
/**
|
||||
* 订单编号
|
||||
*/
|
||||
private String orderCode;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user