package com.ruoyi.system.api.domain.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
/**
|
* @ClassName StaffBaseGetDto
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/7/14 18:29
|
* @Version 1.0
|
*/
|
@Data
|
public class StaffBaseGetDto extends StaffBaseDto{
|
|
@ApiModelProperty(value = "请求对象id")
|
@NotNull(message = "对象id为必传参数")
|
private String id;
|
|
}
|