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