| | |
| | | |
| | | @ApiModelProperty(value = "主键") |
| | | @TableId("id") |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "用户id") |
| | | @TableField("app_user_id") |
| | |
| | | @TableField("user_address") |
| | | private String userAddress; |
| | | |
| | | @ApiModelProperty(value = "状态(0=待服务,1=已服务,2=已取消)") |
| | | @ApiModelProperty(value = "状态(0=待服务,1=已服务,2=已取消, 3=已到期)") |
| | | @TableField("status") |
| | | private Integer status; |
| | | |
| | |
| | | @TableField("create_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private LocalDateTime createTime; |
| | | |
| | | |
| | | @ApiModelProperty(value = "订单id") |
| | | private Long orderId; |
| | | |
| | | @TableField(exist = false) |
| | | private String idStr; |
| | | @TableField(exist = false) |
| | | private Long orderId; |
| | | |
| | | |
| | | public void setId(Integer id) { |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | this.idStr = String.valueOf(id); |
| | | } |