|
|
@@ -0,0 +1,28 @@
|
|
|
+package cn.iocoder.yudao.module.iscs.controller.admin.workdesign.workhandle.vo;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Schema(description = "管理后台 - 钥匙状态")
|
|
|
+@Data
|
|
|
+public class KeyStateVO {
|
|
|
+
|
|
|
+ @Schema(description = "ID")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @Schema(description = "钥匙编码")
|
|
|
+ private String keyCode;
|
|
|
+
|
|
|
+ @Schema(description = "钥匙名称", example = "张三")
|
|
|
+ private String keyName;
|
|
|
+
|
|
|
+ @Schema(description = "钥匙NFC")
|
|
|
+ private String keyNfc;
|
|
|
+
|
|
|
+ @Schema(description = "MAC地址")
|
|
|
+ private String macAddress;
|
|
|
+
|
|
|
+ @Schema(description = "使用状态", example = "0未使用 1使用中")
|
|
|
+ private String usageStatus;
|
|
|
+
|
|
|
+}
|