44323
2024-05-16 80870e154d7755c36cdb345147532c131858e270
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.management.api.query;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "合同详情查询Query")
public class CarInfoQuery implements Serializable {
 
    @ApiModelProperty(value = "公司id",required = true)
    private Integer companyId;
 
    @ApiModelProperty(value = "合同id",required = true)
    private Integer contractId;
 
    @ApiModelProperty(value = "类型,前端忽略")
    private Integer type;
 
}