From 5bd5f3bcd6d2cb375feb0756505691b551339716 Mon Sep 17 00:00:00 2001 From: zhangfeng <1603559716@qq.com> Date: 星期五, 23 十二月 2022 08:55:23 +0800 Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/safePlatform-out into zf --- equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeRfidMaterialDetailRPCRespDto.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 52 insertions(+), 0 deletions(-) diff --git a/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeRfidMaterialDetailRPCRespDto.java b/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeRfidMaterialDetailRPCRespDto.java new file mode 100644 index 0000000..7135d33 --- /dev/null +++ b/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeRfidMaterialDetailRPCRespDto.java @@ -0,0 +1,52 @@ +package com.gkhy.safePlatform.equipment.rpc.api.model.dto.resp; + +public class SafeRfidMaterialDetailRPCRespDto { + private Long id; + private String name; + + private Long bigClassifyId; + + private Long smallClassifyId; + + private Long depId; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Long getBigClassifyId() { + return bigClassifyId; + } + + public void setBigClassifyId(Long bigClassifyId) { + this.bigClassifyId = bigClassifyId; + } + + public Long getSmallClassifyId() { + return smallClassifyId; + } + + public void setSmallClassifyId(Long smallClassifyId) { + this.smallClassifyId = smallClassifyId; + } + + public Long getDepId() { + return depId; + } + + public void setDepId(Long depId) { + this.depId = depId; + } +} -- Gitblit v1.9.2