You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
960 B
44 lines
960 B
1 week ago
|
package com.wrj.driver.server.dto;
|
||
|
|
||
|
import io.swagger.annotations.ApiModel;
|
||
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
import lombok.Data;
|
||
|
import lombok.experimental.Accessors;
|
||
|
|
||
|
import javax.validation.constraints.Max;
|
||
|
import javax.validation.constraints.Min;
|
||
|
import javax.validation.constraints.NotNull;
|
||
|
|
||
|
/**
|
||
|
* @author 曹林
|
||
|
* @description 成绩查询入参
|
||
|
* @create 2023/8/14 21:22
|
||
|
*/
|
||
|
@Data
|
||
|
@Accessors(chain = true)
|
||
|
@ApiModel("成绩查询入参")
|
||
|
public class TestQueryDto {
|
||
|
|
||
|
/**
|
||
|
* 车型标识
|
||
|
*/
|
||
|
@ApiModelProperty(value = "车型标识")
|
||
|
@NotNull(message = "车型标识不能为空")
|
||
|
private Integer carTypeId;
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 科目
|
||
|
*/
|
||
|
@ApiModelProperty(value = "科目")
|
||
|
// @NotNull(message = "考试科目不能为空")
|
||
|
private String subject ;
|
||
|
|
||
|
@ApiModelProperty(value = "租户id")
|
||
|
private Long tenantId = 999999l;
|
||
|
|
||
|
@ApiModelProperty(value = "用户id")
|
||
|
private Long userId;
|
||
|
}
|