You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
298 B
16 lines
298 B
package com.qniao.iot.rc;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@AllArgsConstructor
|
|
public class Person {
|
|
private String name;
|
|
|
|
private int age;
|
|
|
|
public String toString() {
|
|
return getClass().getName() + "@ " + "name=" + this.name + "age=" + age;
|
|
}
|
|
}
|