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.
 
 

19 lines
334 B

import lombok.Builder;
import lombok.Data;
import java.io.Serializable;
/**
* @author yanpeng
* @version 1.0
* @desc TODO
* @company 北京中经网软件有限公司
* @date 2021/7/20 11:40
*/
@Data
@Builder
public class Vo implements Serializable {
private String id;
private String name;
private Integer age;
}