7 changed files with 95 additions and 6 deletions
@ -0,0 +1,29 @@ |
|||||
|
package com.epmet.plugin.power.dto.axis.result; |
||||
|
|
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 动力主轴相关标签信息 |
||||
|
* |
||||
|
* @author work@yujt.net.cn |
||||
|
* @date 2022/4/18/0018 17:14 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PowerAxisAllTagCategoryResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 5442367149527835607L; |
||||
|
|
||||
|
/** |
||||
|
* 标签类别 动力主轴结构:struct;动力主轴领导人: leader |
||||
|
*/ |
||||
|
private String tagCategory; |
||||
|
|
||||
|
/** |
||||
|
* 标签类别编码集合 |
||||
|
*/ |
||||
|
private List<PowerAxisTagCategoryResultDTO> tagList; |
||||
|
} |
Loading…
Reference in new issue