|
|
@ -10,6 +10,9 @@ import com.yxt.common.core.query.Query; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@Data |
|
|
|
public class PcBaseVehicleOrderQuery implements Query { |
|
|
|
private static final long serialVersionUID = 8712247663291062678L; |
|
|
@ -24,4 +27,7 @@ public class PcBaseVehicleOrderQuery implements Query { |
|
|
|
private String customerSid; |
|
|
|
@ApiModelProperty(value = "类型:1意向车型选择、2虚拟订单选择、3车型选择") |
|
|
|
private Integer type; |
|
|
|
|
|
|
|
@ApiModelProperty(value = "已选择的车辆的车架号") |
|
|
|
private List<String> sidList = new ArrayList<>(); |
|
|
|
} |
|
|
|