View Javadoc
1   package com.foxinmy.weixin4j.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   * @deprecated 迁移到子模块weixin4j-pay
14   */
15  @Deprecated
16  public class IdQuery implements Serializable {
17  
18  	private static final long serialVersionUID = -5273675987521807370L;
19  	/**
20  	 * id值
21  	 */
22  	private String id;
23  	/**
24  	 * id类型
25  	 * 
26  	 * @see com.foxinmy.weixin4j.type.IdType
27  	 */
28  	private IdType type;
29  
30  	public IdQuery(String id, IdType idType) {
31  		this.id = id;
32  		this.type = idType;
33  	}
34  
35  	public String getId() {
36  		return id;
37  	}
38  
39  	public IdType getType() {
40  		return type;
41  	}
42  
43  	@Override
44  	public String toString() {
45  		return String.format("%s=%s", type.getName(), id);
46  	}
47  }