1 package com.foxinmy.weixin4j.pay.profitsharing;
2
3 import com.alibaba.fastjson.annotation.JSONField;
4 import com.foxinmy.weixin4j.pay.type.profitsharing.ReceiverType;
5
6 import javax.xml.bind.annotation.XmlElement;
7
8
9
10
11
12
13
14
15 public class ReceiverProfitResult extends ReceiverProfit {
16
17
18
19
20
21
22
23
24 private String result;
25
26
27
28 @XmlElement(name = "finish_time")
29 @JSONField(name = "finish_time")
30 private String finishTime;
31 @XmlElement(name = "fail_reason")
32 @JSONField(name = "fail_reason")
33 private String failReason;
34
35 public ReceiverProfitResult(ReceiverType type, String account, int amount, String description, String result){
36 super(type, account, amount, description);
37 this.result = result;
38 }
39
40 public String getResult() {
41 return result;
42 }
43
44 public void setResult(String result) {
45 this.result = result;
46 }
47
48 public String getFinishTime() {
49 return finishTime;
50 }
51
52 public void setFinishTime(String finishTime) {
53 this.finishTime = finishTime;
54 }
55
56 public String getFailReason() {
57 return failReason;
58 }
59
60 public void setFailReason(String failReason) {
61 this.failReason = failReason;
62 }
63 }