16 lines
171 B
Plaintext
16 lines
171 B
Plaintext
|
package com.healthcare.ohctech.Enum;
|
||
|
|
||
|
public enum RoleCode {
|
||
|
|
||
|
ADM,
|
||
|
DOC,
|
||
|
LAB,
|
||
|
RCP,
|
||
|
EMP,
|
||
|
STR,
|
||
|
DIS,
|
||
|
PHY,
|
||
|
DOC_WELLNESS,
|
||
|
EMP_WELLNESS
|
||
|
}
|