package com.ruoyi.management.api.model;
|
|
import com.ruoyi.common.core.web.page.BasePage;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.context.annotation.Bean;
|
|
@Data
|
@ApiModel(value = "车辆详情model")
|
public class CarInfoRecordQuery extends BasePage {
|
@ApiModelProperty("车辆id")
|
private Integer carId;
|
@ApiModelProperty("type 1合同 2违章 3保养 4年检 5维修 6出险 7保单")
|
private Integer type;
|
}
|