wujingjing
2025-01-13 0bb7dffa90bfa3bd5ad04b75da9c31d21347c668
1
2
3
4
5
6
7
8
9
export const enum SupervisorPublished {
    Y = 'Y',
    N = 'N',
}
 
export const supervisorPublishedMap = {
    [SupervisorPublished.Y]: '已发布',
    [SupervisorPublished.N]: '未发布',
};