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.
		
		
		
		
			
				
					
					
						
							33 lines
						
					
					
						
							989 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							989 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 MedicalRefundInfo extends WxFactory.ResponseCheck.ResultBase {
 | 
						|
    private String appid;
 | 
						|
    private String sub_appid;
 | 
						|
    private String mch_id;
 | 
						|
    private String sub_mch_id;
 | 
						|
    private String nonce_str;
 | 
						|
    private String med_trans_id;
 | 
						|
    private String med_refund_id;
 | 
						|
    private String hosp_out_trade_no;
 | 
						|
    private String hosp_out_refund_no;
 | 
						|
    private String insurance_refund_fee;
 | 
						|
    private String cash_refund_fee;
 | 
						|
    private String cash_refund_stauts;
 | 
						|
    private String insurance_refund_status;
 | 
						|
    private String med_refund_state;
 | 
						|
    private String refund_end_time;
 | 
						|
    private String response_content;
 | 
						|
    private String cash_refund_id;
 | 
						|
    private String insurance_refund_id;
 | 
						|
 | 
						|
}
 | 
						|
 |