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-service/src/main/java/com/gkhy/safePlatform/equipment/model/dto/resp/MaterialDepartmentDto.java | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/model/dto/resp/MaterialDepartmentDto.java b/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/model/dto/resp/MaterialDepartmentDto.java new file mode 100644 index 0000000..c72fe26 --- /dev/null +++ b/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/model/dto/resp/MaterialDepartmentDto.java @@ -0,0 +1,36 @@ +package com.gkhy.safePlatform.equipment.model.dto.resp; + +import java.util.List; + +public class MaterialDepartmentDto { + //部门id + private Long depId; + //部门名称 + private String depName; + //基础物资设备 + private List<MaterialClassificationDto> classificationList; + + public Long getDepId() { + return depId; + } + + public void setDepId(Long depId) { + this.depId = depId; + } + + public String getDepName() { + return depName; + } + + public void setDepName(String depName) { + this.depName = depName; + } + + public List<MaterialClassificationDto> getClassificationList() { + return classificationList; + } + + public void setClassificationList(List<MaterialClassificationDto> classificationList) { + this.classificationList = classificationList; + } +} -- Gitblit v1.9.2