package com.matrix.system.app.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import javax.validation.constraints.NotNull;
|
|
/**
|
* @author wzy
|
* @date 2021-01-14
|
**/
|
@ApiModel(value = "IdSubmitDto", description = "根据id修改接口参数接收类")
|
public class IdSubmitDto {
|
|
@NotNull
|
@ApiModelProperty(value = "id", example = "1")
|
private Long id;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
}
|