feat: 群认证
This commit is contained in:
46
src/services/typings.d.ts
vendored
46
src/services/typings.d.ts
vendored
@ -322,4 +322,50 @@ declare namespace API {
|
||||
type UpdateDeclarationParams = Pick<DeclarationListItem, 'id' | 'weComStatus'>;
|
||||
|
||||
type UpdateMaterialParams = Pick<MaterialListItem, 'id'> & { adminOpen: number };
|
||||
|
||||
interface UploadFile {
|
||||
id: string;
|
||||
url: string;
|
||||
coverUrl: string;
|
||||
}
|
||||
|
||||
interface StaffListItem {
|
||||
id: number;
|
||||
staffName: string;
|
||||
staffQrCode: string;
|
||||
isDefault: 1 | 0;
|
||||
created: string;
|
||||
updated: string;
|
||||
}
|
||||
|
||||
interface UpdateStaffParams {
|
||||
id?: number;
|
||||
staffName: string;
|
||||
staffQrCode: string;
|
||||
isDefault: 1 | 0;
|
||||
created?: string;
|
||||
updated?: string;
|
||||
}
|
||||
|
||||
interface CityOperatorListItem {
|
||||
cityName: string;
|
||||
staffName: string;
|
||||
created: string;
|
||||
updated: string;
|
||||
staffId: number;
|
||||
cityCode: string;
|
||||
groupLink: string;
|
||||
id: number;
|
||||
}
|
||||
|
||||
interface UpdateCityOperator {
|
||||
id?: number;
|
||||
staffId: number;
|
||||
staffName?: string;
|
||||
cityName?: string;
|
||||
cityCode: string;
|
||||
groupLink: string;
|
||||
created?: string;
|
||||
updated?: string;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user