| | |
| | | @ApiModel(value="技师预约对象", description="") |
| | | public class TechnicianSubscribeVO { |
| | | |
| | | @ApiModelProperty(value = "预约id") |
| | | private String id; |
| | | |
| | | /** |
| | | * 门店名称 |
| | | */ |
| | |
| | | /** |
| | | * 预约状态:0=待服务,1=已服务,2=已取消 |
| | | */ |
| | | @ApiModelProperty(value = "预约状态:0=待服务,1=已服务,2=已取消") |
| | | @ApiModelProperty(value = "预约状态:0=待服务,1=已服务,2=已取消 4 已到期") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "经度") |
| | | private String longitude; |
| | | |
| | | @ApiModelProperty(value = "纬度") |
| | | private String latitude; |
| | | |
| | | @ApiModelProperty(value = "预约用户") |
| | | private String userName; |
| | | |
| | | @ApiModelProperty(value = "联系电话") |
| | | private String phone; |
| | | |
| | | private Long appUserId; |
| | | |
| | | |
| | | } |