View Javadoc
1   package com.foxinmy.weixin4j.pay.type;
2   
3   import java.io.Serializable;
4   
5   /**
6    * ID查询
7    * 
8    * @className IdQuery
9    * @author jinyu(foxinmy@gmail.com)
10   * @date 2014年11月1日
11   * @since JDK 1.6
12   * @see
13   */
14  public class IdQuery implements Serializable {
15  
16  	private static final long serialVersionUID = -5273675987521807370L;
17  	/**
18  	 * id值
19  	 */
20  	private String id;
21  	/**
22  	 * id类型
23  	 * 
24  	 * @see IdType
25  	 */
26  	private IdType type;
27  
28  	public IdQuery(String id, IdType idType) {
29  		this.id = id;
30  		this.type = idType;
31  	}
32  
33  	public String getId() {
34  		return id;
35  	}
36  
37  	public IdType getType() {
38  		return type;
39  	}
40  
41  	@Override
42  	public String toString() {
43  		return String.format("%s=%s", type.getName(), id);
44  	}
45  }