7 changed files with 65 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
package com.epmet.plugin.power.dto.axis.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class PowerAxisStructStructTreeFormDTO { |
|||
private String agencyId; |
|||
} |
@ -0,0 +1,13 @@ |
|||
package com.epmet.plugin.power.dto.axis.result; |
|||
|
|||
import com.epmet.commons.tools.utils.TreeNode; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class PowerAxisStructTreeResultDTO extends TreeNode { |
|||
private Long id; |
|||
private Long pid; |
|||
private String name; |
|||
private String leaderId; |
|||
private String leaderName; |
|||
} |
Loading…
Reference in new issue