//vo中的user定义感觉是用列族的模式来定义?为什么其他的hbase中的表对象不按列表的方式定义呢?
@Data
@NoArgsConstructor
@AllArgsConstructor
public class User {
private Long id;
private BaseInfo baseInfo;
private OtherInfo otherInfo;
@Data
@NoArgsConstructor
@AllArgsConstructor
public static class BaseInfo {
private String name;
private Integer age;
private String sex;
}
@Data
@NoArgsConstructor
@AllArgsConstructor
public static class OtherInfo {
private String phone;
private String address;
}
}
//==========================
其他的 vo对象基本都是罗列出来所有的列字段信息