You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.3 KiB
67 lines
1.3 KiB
/**
|
|
* 企业信息
|
|
*/
|
|
export interface Company {
|
|
companyId?: number;
|
|
shortName?: string;
|
|
companyName?: string;
|
|
companyType?: number;
|
|
companyTypeMultiple?: string;
|
|
companyLogo?: string;
|
|
companyCode?: string;
|
|
domain?: string;
|
|
phone?: string;
|
|
InvoiceHeader?: string;
|
|
startTime?: string;
|
|
expirationTime?: string;
|
|
version?: number;
|
|
members?: number;
|
|
storage?: string;
|
|
storageMax?: string;
|
|
users?: number;
|
|
departments?: number;
|
|
industryParent?: string;
|
|
industryChild?: string;
|
|
country?: string;
|
|
province?: string;
|
|
city?: string;
|
|
region?: string;
|
|
address?: string;
|
|
latitude?: string;
|
|
longitude?: string;
|
|
businessEntity?: string;
|
|
comments?: string;
|
|
authentication?: number;
|
|
industryId?: number;
|
|
industryName?: string;
|
|
status?: number;
|
|
userId?: number;
|
|
sortNumber?: number;
|
|
authoritative?: boolean;
|
|
tenantId?: number;
|
|
tenantName?: string;
|
|
tenantCode?: string;
|
|
nickname?: string;
|
|
code?: number;
|
|
createTime?: string;
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 企业信息搜索条件
|
|
*/
|
|
export interface CompanyParam {
|
|
companyId?: number;
|
|
shortName?: string;
|
|
companyName?: string;
|
|
domain?: string;
|
|
keywords?: string;
|
|
authoritative?: number;
|
|
authentication?: number;
|
|
province?: string;
|
|
city?: string;
|
|
region?: string;
|
|
version?: number;
|
|
createTimeStart?: string;
|
|
createTimeEnd?: string;
|
|
}
|