wujingjing
2025-02-17 0f01c4bbce19fa8489a4e835c83cb9415549f681
1
2
3
4
5
6
7
8
9
export const enum SupervisorPublished {
    Y = 'Y',
    N = 'N',
}
 
export const supervisorPublishedMap = {
    [SupervisorPublished.Y]: '已发布',
    [SupervisorPublished.N]: '未发布',
};