/**
* Copyright 2014 the original author or authors.
*
* Licensed under the Baidu company (the "License");
* you may not use this file except in compliance with the License.
*
*/
package com.baidu.bjf.remoting.protobuf.complex;
import com.baidu.bjf.remoting.protobuf.annotation.Protobuf;
/**
*
* @author xiemalin
*
*/
public class PersonPOJOWithDefault {
@Protobuf
public String name;
@Protobuf
public int id;
@Protobuf
public String email;
@Protobuf
public Double doubleF;
@Protobuf
public Float floatF;
@Protobuf
public byte[] bytesF;
@Protobuf
public Boolean boolF;
}