View Javadoc
1   package com.foxinmy.weixin4j.mp.model.shakearound;
2   
3   import com.alibaba.fastjson.annotation.JSONField;
4   
5   import java.util.Date;
6   
7   /**
8    * 摇一摇周边设备审核信息
9    *
10   * @auther: Feng Yapeng
11   * @since: 2016/10/12 21:47
12   */
13  public class DeviceAuditState {
14  
15      /**
16       * 申请设备ID时所返回的批次ID
17       */
18      @JSONField(name = "apply_id")
19      private Integer applyId;
20      /**
21       * 审核状态。0:审核未通过、1:审核中、2:审核已通过;
22       * 若单次申请的设备ID数量小于等于500个,系统会进行快速审核;
23       * 若单次申请的设备ID数量大于500个,会在三个工作日内完成审核;
24       */
25      @JSONField(name = "audit_status")
26      private String  auditStatus;
27  
28      /**
29       * 审核备注,对审核状态的文字说明
30       */
31      @JSONField(name = "audit_comment")
32      private String auditComment;
33      /**
34       * 提交申请的时间戳
35       */
36      @JSONField(name = "apply_time")
37      private long applyTime;
38  
39      /**
40       * 确定审核结果的时间戳,若状态为审核中,则该时间值为0
41       */
42      @JSONField(name = "audit_time")
43      private long auditTime;
44  
45      public Integer getApplyId() {
46          return applyId;
47      }
48  
49      public void setApplyId(Integer applyId) {
50          this.applyId = applyId;
51      }
52  
53      public String getAuditStatus() {
54          return auditStatus;
55      }
56  
57      public void setAuditStatus(String auditStatus) {
58          this.auditStatus = auditStatus;
59      }
60  
61      public String getAuditComment() {
62          return auditComment;
63      }
64  
65      public void setAuditComment(String auditComment) {
66          this.auditComment = auditComment;
67      }
68  
69      public long getApplyTime() {
70          return applyTime;
71      }
72  
73      public void setApplyTime(long applyTime) {
74          this.applyTime = applyTime;
75      }
76  
77      public long getAuditTime() {
78          return auditTime;
79      }
80  
81      public void setAuditTime(long auditTime) {
82          this.auditTime = auditTime;
83      }
84  }