yangyin
2024-11-12 272000b000564f5e4ed7c5562fe72a206c8a48f9
1
2
3
4
5
6
7
8
9
export const enum SupervisorPublished {
    Y = 'Y',
    N = 'N',
}
 
export const supervisorPublishedMap = {
    [SupervisorPublished.Y]: '已发布',
    [SupervisorPublished.N]: '未发布',
};