3 changed files with 24 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||||
|
package com.epmet.plugin.power.dto.axis.form; |
||||
|
|
||||
|
import lombok.AllArgsConstructor; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
@Data |
||||
|
@NoArgsConstructor |
||||
|
@AllArgsConstructor |
||||
|
public class PowerAxisStructFormDTO{ |
||||
|
private String name; |
||||
|
} |
@ -0,0 +1,6 @@ |
|||||
|
package com.epmet.plugin.power.dto.axis.result; |
||||
|
|
||||
|
import com.epmet.plugin.power.dto.axis.PowerAxisStructDTO; |
||||
|
|
||||
|
public class PowerAxisStructListResultDTO extends PowerAxisStructDTO { |
||||
|
} |
@ -0,0 +1,6 @@ |
|||||
|
package com.epmet.plugin.power.dto.axis.result; |
||||
|
|
||||
|
import com.epmet.plugin.power.dto.axis.PowerAxisStructDTO; |
||||
|
|
||||
|
public class PowerAxisStructResultDTO extends PowerAxisStructDTO { |
||||
|
} |
Loading…
Reference in new issue