yang_shj
7 months ago
9 changed files with 91 additions and 1 deletions
@ -0,0 +1,31 @@
|
||||
package com.hnac.hzims.equipment.vo; |
||||
|
||||
import com.hnac.hzims.common.pojo.Tree; |
||||
import com.hnac.hzims.equipment.entity.EmInfoEntity; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @Author: huangxing |
||||
* @Date: 2024/04/23 17:08 |
||||
*/ |
||||
@Data |
||||
@ApiModel("设备树信息") |
||||
public class EmInfoTreeVO { |
||||
|
||||
@ApiModelProperty("设备ID") |
||||
private Long id; |
||||
|
||||
@ApiModelProperty("设备编号") |
||||
private String number; |
||||
|
||||
@ApiModelProperty("设备名称") |
||||
private String name; |
||||
|
||||
@ApiModelProperty("子设备") |
||||
private List<EmInfoTreeVO> children; |
||||
|
||||
} |
Loading…
Reference in new issue