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

30 lines
468 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
* 员工
*
* @Author: YouChainHouJin
* @Date: 2022-09-03 22:08:45
* @Email: huoj@youchain56.com
* @Copyright YouChain https://YouChain56.comSince 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,
}