Skip to content

Commit d568b71

Browse files
committed
feat(dto):为FlowModuleListRequest添加ToString注解
为FlowModuleListRequest类添加lombok的ToString注解,便于调试和日志输出时直接打印对象信息
1 parent 4823471 commit d568b71

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/tech/wetech/flexmodel/application/dto/FlowModuleListRequest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
import lombok.Getter;
44
import lombok.Setter;
5+
import lombok.ToString;
56

67
/**
78
* @author cjbi
89
*/
910
@Getter
1011
@Setter
12+
@ToString
1113
public class FlowModuleListRequest {
1214
private String flowModuleId;
1315
private String flowKey;

0 commit comments

Comments
 (0)