package com.yuanchu.limslaboratory.pojo.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@ApiModel(value="UpdateClassifyDto对象", description="")
|
public class UpdateClassifyDto {
|
@ApiModelProperty(value = "分类主键", example = "1", required = true)
|
private Integer id;
|
|
@ApiModelProperty(value = "分类父名称", example = "温度测量仪表")
|
private String fatherName;
|
|
@ApiModelProperty(value = "分类子名称", example = "体温计",required = true)
|
private String sonName;
|
}
|