mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
update 根据vinCode查询订单列表
This commit is contained in:
@@ -82,4 +82,7 @@ public class QueryOrderDTO extends BaseEntity {
|
||||
|
||||
// 会员组编号
|
||||
private String groupCode;
|
||||
|
||||
// 车辆vin编号
|
||||
private String vinCode;
|
||||
}
|
||||
|
||||
@@ -356,6 +356,8 @@ public class MemberGroupServiceImpl implements MemberGroupService {
|
||||
@Override
|
||||
public List<OrderListVO> queryConsumptionDetailListByVinCode(String groupCode, String vinCode) {
|
||||
QueryOrderDTO dto = new QueryOrderDTO();
|
||||
dto.setGroupCode(groupCode);
|
||||
dto.setVinCode(vinCode);
|
||||
List<OrderListVO> orderListVOS = orderBasicInfoService.selectOrderBasicInfoList(dto);
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user