YouChain_WMS_Web/nc_wms_web/src/constants/system/employee-const.ts

31 lines
518 B
TypeScript
Raw Normal View History

2025-03-14 17:13:19 +08:00
/*
*
*
* @Author: 1024-
* @Date: 2022-09-03 22:08:45
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024 https://1024lab.net Since 2012
*/
import { SmartEnum } from '/@/types/smart-enum';
export const GENDER_ENUM: SmartEnum<number> = {
UNKNOWN: {
value: 0,
desc: '未知',
},
MAN: {
value: 1,
desc: '男',
},
WOMAN: {
value: 2,
desc: '女',
},
}
export default {
GENDER_ENUM,
}