111
rk
2025-08-28 99e92a155a1b21a8386b482e7aab6fef649aeffa
server/services/src/main/java/com/doumee/dao/business/model/Orders.java
@@ -9,6 +9,7 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
@@ -100,14 +101,13 @@
    private String supplement;
    @ApiModelProperty(value = "费用标准", example = "1")
    private Long price;
    private BigDecimal price;
    @ApiModelProperty(value = "预估费用", example = "1")
    private Long estimatedAccount;
    @ApiModelProperty(value = "实际支付费用", example = "1")
    private Long payAccount;
    @ApiModelProperty(value = "实收费用", example = "1")
    private Long receiveAccount;
@@ -193,7 +193,7 @@
    private Integer isUpdate;
    @ApiModelProperty(value = "修改时间", example = "1")
    private Integer isUpdateTime;
    private Date isUpdateTime;
    @ApiModelProperty(value = "接单方黑名单member:id 多个以,分割")
    private String blackReceive;
@@ -253,6 +253,9 @@
    @TableField(exist = false)
    private Integer queryMyOrderType;
    @Schema(description ="修改确认倒计时")
    @TableField(exist = false)
    private Long confirmCountdown;
    @ApiModelProperty(value = "需求类型")
    @TableField(exist = false)
@@ -364,6 +367,9 @@
    @TableField(exist = false)
    private BigDecimal queryLgt;
    @ApiModelProperty(value = "是否可取消:0=可以;1=不可以", example = "1")
    @TableField(exist = false)
    private Integer cancelStatus;
}