| | |
| | | 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; |
| | |
| | | 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; |
| | |
| | | @TableField(exist = false) |
| | | private Integer queryMyOrderType; |
| | | |
| | | @Schema(description ="修改确认倒计时") |
| | | @TableField(exist = false) |
| | | private Long confirmCountdown; |
| | | |
| | | @ApiModelProperty(value = "需求类型") |
| | | @TableField(exist = false) |