| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import io.swagger.models.auth.In; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | @Null |
| | | @JsonProperty("ManufacturerID") |
| | | private String manufacturerID; |
| | | /** |
| | | * 设备唯一 |
| | | * 编码 |
| | | */ |
| | | @Null |
| | | @JsonProperty("EquipmentUniqueNumber") |
| | | private String equipmentUniqueNumber; |
| | | /** |
| | | * 设备生产商名称 |
| | | */ |
| | |
| | | @Null |
| | | @JsonProperty("EquipmentName") |
| | | private String equipmentName; |
| | | /** |
| | | * 设备分类 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("EquipmentClassification") |
| | | private Integer equipmentClassification; |
| | | } |