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.
25 lines
720 B
25 lines
720 B
package com.ynxbd.common.helper.outSide;
|
|
|
|
/**
|
|
* @author 李进才
|
|
* @ClassName OrganizeTypeEnum
|
|
* @Description TODO
|
|
* @date 2023/07/04 15:20:00
|
|
*/
|
|
public enum OrganizeTypeEnum {
|
|
|
|
PSYCHO("F95B0D5660A5D1511683D48339530C4636D37B8DD556C32F1374A4B9AA9E63A0","版纳精神问卷系统","中盛凯新对接版纳精神问卷系统"),
|
|
|
|
WEI_MAI("3D48C80227DC4D7E8B30ED3C73F48031","微脉对接患者建档","芒市妇幼微脉对接患者建档");
|
|
|
|
public final String CODE;
|
|
public final String NAME;
|
|
|
|
public final String DESCRIPTION;
|
|
|
|
OrganizeTypeEnum(String code, String name, String description){
|
|
this.CODE = code;
|
|
this.NAME = name;
|
|
this.DESCRIPTION = description;
|
|
}
|
|
}
|
|
|