package com.xinelu.common.constant; /** * @description: 就诊类型常量 * @author: haown * @create: 2024-03-07 15:45 **/ public class VisitMethodConstants { /** * 门诊 */ public static final String OUTPATIENT_SERVICE = "OUTPATIENT_SERVICE"; /** * 住院 */ public static final String BE_IN_HOSPITAL = "BE_IN_HOSPITAL"; }