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