ReviewStandardInspectionContentRequest.java 491 Bytes
Newer Older
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.web.request;

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import javax.validation.constraints.NotNull;

/**
 * 体系审查和车型审查检验内容请求实体类
 * @author gxk
 */
@Data
@ApiModel
public class ReviewStandardInspectionContentRequest {

    @ApiModelProperty("标准主键ID")
    @NotNull(message = "标准主键ID不能为空")
    private Long id;

}