44323
2024-05-16 80870e154d7755c36cdb345147532c131858e270
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}