| package com.doumee.dao.business.web.request; | 
|   | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.Date; | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2023/10/9 11:04 | 
|  */ | 
| @Data | 
| @ApiModel("报修业务请求类") | 
| public class RepairRequest { | 
|   | 
|     @ApiModelProperty(value = "车辆主键") | 
|     private String binkeId; | 
|   | 
|     @ApiModelProperty(value = "车辆编码") | 
|     private String bikeCode; | 
|   | 
|     @ApiModelProperty(value = "车辆类型编码(关联base_param)") | 
|     private String typeId; | 
|   | 
|     @ApiModelProperty(value = "经度", example = "1") | 
|     private BigDecimal longitude; | 
|   | 
|     @ApiModelProperty(value = "纬度", example = "1") | 
|     private BigDecimal latitude; | 
|   | 
|     @ApiModelProperty(value = "详细地址") | 
|     private String addr; | 
|   | 
|     @ApiModelProperty(value = "车辆问题原因编码(关联base_param)") | 
|     private String paramId; | 
|   | 
|     @ApiModelProperty(value = "车辆问题") | 
|     private String param; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     @ExcelColumn(name="备注") | 
|     private String info; | 
|   | 
|     @ApiModelProperty(value = "联系人") | 
|     private String linkname; | 
|   | 
|     @ApiModelProperty(value = "联系电话") | 
|     private String linkphone; | 
|   | 
|     @ApiModelProperty(value = "现场描述") | 
|     private String content; | 
|   | 
|     @ApiModelProperty(value = "用户编码(关联member表)",hidden = true) | 
|     private String memberId; | 
|   | 
|     @ApiModelProperty(value = "现场情况") | 
|     private List<String> fileUrlList; | 
|   | 
| } |