高峰时段计费

This commit is contained in:
attiya 2025-05-09 11:05:25 +08:00
parent 3d9d23dacd
commit 36b202dffd

View File

@ -1,7 +1,6 @@
package com.cdzy.orders.model.dto.res;
import com.cdzy.orders.model.entity.EbikeOrderDetails;
import com.mybatisflex.annotation.Column;
import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.RelationOneToMany;
import lombok.Data;
@ -37,7 +36,6 @@ public class RspOrderDetailsInfo {
/**
* 状态0-进行中 1-已取消 2-待支付 3-已支付 4-退款中 5-已退款
*/
@Column(onInsertValue = "0")
private Integer status;
/**
@ -93,7 +91,6 @@ public class RspOrderDetailsInfo {
/**
* 创建时间
*/
@Column(onInsertValue = "now()")
private LocalDateTime createdAt;
/**
@ -116,7 +113,6 @@ public class RspOrderDetailsInfo {
*/
private Integer tempLock;
@Column(isLogicDelete = true,onInsertValue = "0")
private Integer isDelete;
@RelationOneToMany(selfField = "orderId", targetField = "orderId")