/** 登录 */ export interface LoginConfigType { username: string password: string verifyKey: string verifyCode: string tenantCode: string // 租户编码 } /** 默认分页参数 */ export interface DefaultGetListData { indexFrom?: number pageIndex: number pageSize: number order?: { fieldName: string order: string }[] } export interface getNoticeListRequestOptions { content: string isEnabled: boolean startIssueTime: string endIssueTime: string } export interface addNoticeRequestOptions { content: string issueTime: string isEnabled: boolean } export interface editNoticeRequestOptions extends addNoticeRequestOptions { id: number } // 获取企业列表 export interface getCompanysListRequestOptions { companyName: string contacts: string phone: string minTime: string maxTime: string } // 获取项目列表 export interface getProjectListRequestOptions { projectNo: string projectName: string projectAddress: string buidName: string companyId: number companyName: string status: number contacts: string phone: string minTime: string maxTime: string provinceId: number cityId: number areaId: number streetId: number } // 员工列表搜索参数 export interface getEmployeeListRequestOptions { staffNo: string name: string idCard: string jobType: number projectId: number companyId: number }