| | |
| | | package com.ruoyi.admin.vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | public class OrderByServeRecordVO { |
| | | |
| | | @ApiModelProperty("接单时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date acceptOrderTime; |
| | | |
| | | @ApiModelProperty("上门时间") |
| | |
| | | @ApiModelProperty("路线经纬度集合") |
| | | private List<String> coordinate; |
| | | |
| | | @ApiModelProperty("路线标点经纬度集合") |
| | | private List<String> marker; |
| | | |
| | | @ApiModelProperty("现场照片集合") |
| | | private List<String> photo; |
| | | @ApiModelProperty("现场照片(多张照片 ','隔开)") |
| | | @TableField("card_pic") |
| | | private String cardPic; |
| | | @ApiModelProperty("现场照片(多张照片 ','隔开)") |
| | | @TableField("machine_pic") |
| | | private String machinePic; |
| | | @ApiModelProperty("现场照片(多张照片 ','隔开)") |
| | | @TableField("paper_pic") |
| | | private String paperPic; |
| | | |
| | | |
| | | } |