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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.yuanchu.limslaboratory.pojo.dto;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="UpdateEquipmentPointDto对象", description="")
public class UpdateEquipmentPointDto {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "主键", example = "1", required = true)
    private Integer id;
 
    @ApiModelProperty(value = "仪器Id 关联", example = "1", required = true)
    private Integer instrumentId;
 
    @ApiModelProperty(value = "码点编号", example = "Area-1", required = true)
    private String equipmentPoint;
 
    @ApiModelProperty(value = "码点名称", example = "导体屏蔽(壁厚面积)", required = true)
    private String equipmentPointName;
 
    @ApiModelProperty(value = "单位", example = "mm", required = true)
    private String unit;
 
    @ApiModelProperty(value = "描述", example = "疯了,做不了")
    private String descriptiveness;
}