All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.nichetoolkit.socket.model.bean.Contact Maven / Gradle / Ivy

package io.github.nichetoolkit.socket.model.bean;

import lombok.Builder;
import lombok.Getter;
import lombok.Setter;

/**
 * 

Contact 联系人

* @author Cyan ([email protected]) * @version v.1.0 */ @Builder @Setter @Getter public class Contact { private byte sign; private byte phoneNumLength; private byte[] phoneNum; private byte nameLength; private byte[] name; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy