@Builder可以快速创建一个类对象。
Employee employee = Employee.builder() .status(status) .id(id) .build();
这样写可以快速创建有个对象。比new对象,然后get方法设置值快很多。