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

cn.ipokerface.weixin.proxy.merchant.IdQuery Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.proxy.merchant;

import java.io.Serializable;

/**
 * Created by       PokerFace
 * Create Date      2019-12-28.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ public class IdQuery implements Serializable { private static final long serialVersionUID = -5273675987521807370L; /** * id值 */ private String id; /** * id类型 * * @see IdType */ private IdType type; public IdQuery(String id, IdType idType) { this.id = id; this.type = idType; } public String getId() { return id; } public IdType getType() { return type; } @Override public String toString() { return String.format("%s=%s", type.getName(), id); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy