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.
		
		
		
		
			
				
					47 lines
				
				1.4 KiB
			
		
		
			
		
	
	
					47 lines
				
				1.4 KiB
			| 
								 
											2 years ago
										 
									 | 
							
								package com.ynxbd.common.helper.xbd;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @author 李进才
							 | 
						||
| 
								 | 
							
								 * @ClassName XBDEnum
							 | 
						||
| 
								 | 
							
								 * @Description TODO
							 | 
						||
| 
								 | 
							
								 * @date 2023/05/05 10:24:00
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								public enum XBDEnum {
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * [病案翻拍] 获取可以翻拍的列表
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    BLSM_Appointment_GetBA("BLSM_Appointment_GetBA","获取此病人已被翻拍的病案(可以翻拍的病历)"),
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * [病案翻拍] 获取病人翻拍病案所用用途
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    BLSM_Appointment_GetTemplate("BLSM_Appointment_GetTemplate","获取模板列表(获取用途列表)"),
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * [病案翻拍] 新增预约记录
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    BLSM_Appointment_SetAppointment("BLSM_Appointment_SetAppointment","新增预约记录"),
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * [病案翻拍] 获取历史预约记录
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    BLSM_Appointment_GetHistoryAppointment("BLSM_Appointment_GetHistoryAppointment","获取此病人预约的历史数据"),
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * [病案翻拍] 付费成功回调
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    BLSM_Appointment_SetISPay("BLSM_Appointment_SetISPay","付费成功回调"),
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * [病案翻拍] 修改收获地址
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    BLSM_Appointment_ChangeAddress("BLSM_Appointment_ChangeAddress","修改收货信息"),
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * [病案翻拍] 停止预约
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    BLSM_Appointment_StopAppointment("BLSM_Appointment_StopAppointment","停止预约");
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public final String Name;
							 | 
						||
| 
								 | 
							
								    public final String Description;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    XBDEnum(String Name, String Description) {
							 | 
						||
| 
								 | 
							
								        this.Name = Name;
							 | 
						||
| 
								 | 
							
								        this.Description = Description;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |