UNPKG

@cainiaofe/cn-ui-m

Version:
43 lines (42 loc) 737 B
import { CnSelectOptionProps } from "../../cn-select"; /** * 员工信息数据源 */ export interface CnEmployeeOptionProps extends CnSelectOptionProps { /** * 姓名 */ name?: string; /** * 花名 */ nickName?: string; /** * 工号 */ workNo?: string; /** * 头像 */ personalPhotoUrl?: string; /** * 部门 */ department?: string; /** * 工作状态,false表示异常 */ workStatus?: boolean; /** * 是否在职,为F时表示已离职 */ available?: string; /** * 钉钉联系的链接 */ dingtalkProfileUrl?: string; /** * 钉钉联系的id */ dingding?: string; }