1 package com.foxinmy.weixin4j.pay.profitsharing;
2
3 import com.foxinmy.weixin4j.pay.type.ProfitIdType;
4
5
6
7
8
9
10
11
12 public class ProfitId {
13 private String id;
14 private ProfitIdType idType;
15
16 public ProfitId(String id, ProfitIdType type){
17 this.id = id;
18 this.idType = type;
19 }
20
21 public String getId() {
22 return id;
23 }
24
25 public void setId(String id) {
26 this.id = id;
27 }
28
29 public ProfitIdType getIdType() {
30 return idType;
31 }
32
33 public void setIdType(ProfitIdType idType) {
34 this.idType = idType;
35 }
36 }