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