You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					
					
						
							21 lines
						
					
					
						
							569 B
						
					
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							569 B
						
					
					
				| package com.ynxbd.wx.wxfactory.bean;
 | |
| 
 | |
| import com.ynxbd.wx.wxfactory.WxFactory;
 | |
| import lombok.Getter;
 | |
| import lombok.NoArgsConstructor;
 | |
| import lombok.Setter;
 | |
| import lombok.ToString;
 | |
| 
 | |
| @Setter
 | |
| @Getter
 | |
| @ToString(callSuper = true)
 | |
| @NoArgsConstructor
 | |
| public class MedicalRefund extends WxFactory.ResponseCheck.ResultBase {
 | |
|     private String totalFee;
 | |
|     private String cashRefundFee;
 | |
|     private String insuranceRefundFee;
 | |
|     private String medRefundId;
 | |
|     private String cashRefundId;
 | |
|     private String insuranceRefundId;
 | |
|     private String sign;
 | |
| }
 | |
| 
 |