View Javadoc
1   package com.foxinmy.weixin4j.type;
2   
3   /**
4    * 报关状态
5    * 
6    * @className CustomsSatus
7    * @author jinyu(foxinmy@gmail.com)
8    * @date 2016年3月27日
9    * @since JDK 1.6
10   * @see
11   * @deprecated 迁移到子模块weixin4j-pay
12   */
13  @Deprecated
14  public enum CustomsSatus {
15  	UNDECLARED("未申报"), SUBMITTED("申报已提交"), PROCESSING("申报中"), SUCCESS("申报成功"), FAIL(
16  			"申报失败"), EXCEPT("海关接口异常");
17  	private String sate;
18  
19  	CustomsSatus(String sate) {
20  		this.sate = sate;
21  	}
22  
23  	public String getSate() {
24  		return this.sate;
25  	}
26  }