jiangping
2024-10-17 de0e3e6b98d7d2b7f7ccf88a008eb9cd8a9fa4c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.doumee.dao.admin.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author T14
 */
@Data
@ApiModel("长期车查询")
public class CarsQuery {
 
    @ApiModelProperty(value = "关键字")
    private String keyWords;
 
    @ApiModelProperty(value = "公司名称")
    private String companyName;
 
    @ApiModelProperty(value = "车牌号")
    private String carNo;
}