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.
		
		
		
		
			
				
					
					
						
							28 lines
						
					
					
						
							845 B
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							845 B
						
					
					
				package com.ynxbd.wx.wxfactory.bean;
 | 
						|
 | 
						|
import lombok.ToString;
 | 
						|
 | 
						|
@ToString
 | 
						|
public enum OrderTypeEnum {
 | 
						|
 | 
						|
    REG_PAY("RegPay", "挂号支付"),
 | 
						|
    MED_PAY("MedPay", "药费支付"),
 | 
						|
    DIAG_PAY("DiagPay", "诊间支付"),
 | 
						|
    IN_HOSP_PAY("InHospPay", "住院费支付"),
 | 
						|
    PHARMACY_PAY("PharmacyPay", "药店支付"),
 | 
						|
    INSURANCE_PAY("InsurancePay", "保险费支付"),
 | 
						|
    INT_REG_PAY("IntRegPay", "互联网医院挂号支付"),
 | 
						|
    INT_RE_DIAG_PAY("IntReDiagPay", "互联网医院复诊支付"),
 | 
						|
    INT_PSC_PAY("IntPscPay", "互联网医院处方支付"),
 | 
						|
    COVID_EXAM_PAY("CovidExamPay", "新冠检测费用");
 | 
						|
 | 
						|
    // 编码
 | 
						|
    public final String CODE;
 | 
						|
    // 名称
 | 
						|
    public final String NAME;
 | 
						|
 | 
						|
    OrderTypeEnum(String CODE, String NAME) {
 | 
						|
        this.CODE = CODE;
 | 
						|
        this.NAME = NAME;
 | 
						|
    }
 | 
						|
}
 | 
						|
 |