Compare commits

..

No commits in common. "f96ebbbae74cec72fa39eb5852a4412ad8148235" and "3a2ec810167867f238390e8486bd6753e1aec208" have entirely different histories.

3 changed files with 0 additions and 25 deletions

View File

@ -1,7 +1,6 @@
package com.cdzy.ebikeoperate.model.dto.response;
import com.cdzy.ebikeoperate.model.pojo.EbikePoint;
import com.mybatisflex.annotation.Column;
import com.mybatisflex.annotation.RelationOneToMany;
import lombok.Data;
@ -106,17 +105,6 @@ public class ResEbikeSiteRegionPageDto {
*/
private Integer isDelete;
/**
* 借车单量
*/
private Integer borrowingOrder;
/**
* 还车胆量
*/
private Integer returnOrder;
@RelationOneToMany(selfField = "siteRegionId",targetField = "regionId")
private List<EbikePoint> points;
}

View File

@ -125,16 +125,4 @@ public class EbikeSiteRegion implements Serializable {
private String describe;
/**
* 借车单量
*/
@Column(onInsertValue = "0")
private Integer borrowingOrder;
/**
* 还车胆量
*/
@Column(onInsertValue = "0")
private Integer returnOrder;
}

View File

@ -133,7 +133,6 @@ public class UserOrdersServiceImpl extends ServiceImpl<UserOrdersMapper, EbikeUs
String stringBuilder = resGpsDto.getLongitude() + "," + resGpsDto.getLatitude();
userOrders.setRidePoint(stringBuilder);
userOrdersMapper.insert(userOrders);
//处理车辆
return userOrders.getOrderId();
}