
7 changed files with 69 additions and 0 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.yxt.anrui.terminal.api.autoservice.retrieval; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @description: |
||||
|
* @author: dimengzhe |
||||
|
* @date: 2023/10/12 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class CarListVos2 { |
||||
|
|
||||
|
@ApiModelProperty("折让") |
||||
|
private String discount; |
||||
|
@ApiModelProperty("车辆sid") |
||||
|
private String vinSid; |
||||
|
@ApiModelProperty("是否显示挂车信息") |
||||
|
private boolean showHandCarBtn; |
||||
|
|
||||
|
private List<DeliveredDiscountVo> discountUse; |
||||
|
|
||||
|
@ApiModelProperty("实际购车人") |
||||
|
private DeliveredUseMessagesVo realBuyer; |
||||
|
} |
Loading…
Reference in new issue