Exemplo n.º 1
0
 public String getPayTypeDes() {
   return PayType.toPayTypeDes(getPayTypeEnum());
 }
Exemplo n.º 2
0
 public void setPayType(PayType payType) {
   this.payType = payType.ordinal();
 }
Exemplo n.º 3
0
 public PayType getPayTypeEnum() {
   if (payType == null) {
     return null;
   }
   return PayType.values()[payType];
 }