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