Class Receiver
- java.lang.Object
-
- com.foxinmy.weixin4j.pay.profitsharing.Receiver
-
- Direct Known Subclasses:
ReceiverProfit
public class Receiver extends Object
分账接收方基础信息 用于添加或删除分帐接收方时使用- Since:
- weixin4j-pay 1.1.0
- Author:
- kit(kit_21cn@21cn.com)
-
-
Constructor Summary
Constructors Constructor Description Receiver()
Receiver(ReceiverType type, String account, RelationType relationType)
Receiver(ReceiverType type, String account, String name, RelationType relationType, String customRelation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAccount()
String
getCustomRelation()
String
getName()
RelationType
getRelationType()
ReceiverType
getType()
void
setAccount(String account)
void
setCustomRelation(String customRelation)
void
setName(String name)
void
setRelationType(RelationType relationType)
void
setType(ReceiverType type)
-
-
-
Constructor Detail
-
Receiver
public Receiver()
-
Receiver
public Receiver(ReceiverType type, String account, RelationType relationType)
-
Receiver
public Receiver(ReceiverType type, String account, String name, RelationType relationType, String customRelation)
-
-
Method Detail
-
getType
public ReceiverType getType()
-
setType
public void setType(ReceiverType type)
-
getAccount
public String getAccount()
-
setAccount
public void setAccount(String account)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getRelationType
public RelationType getRelationType()
-
setRelationType
public void setRelationType(RelationType relationType)
-
getCustomRelation
public String getCustomRelation()
-
setCustomRelation
public void setCustomRelation(String customRelation)
-
-