XiaoRuby
2023-07-25 653cbd6bc42565dbdcc7fdbe652874738b1908df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
}