wujingjing
2024-09-09 71ffe1b098e8a7b2b2c8f938e7765be9776e8966
1
2
3
4
5
6
7
8
9
export const enum SupervisorPublished {
    Y = 'Y',
    N='N'
}
 
export const supervisorPublishedMap = {
    [SupervisorPublished.Y]:'已发布',
    [SupervisorPublished.N]:'未发布'
}