feat: 群认证

This commit is contained in:
chashaobao
2025-10-13 23:33:58 +08:00
parent 11f2624889
commit 4991720abb
10 changed files with 549 additions and 10 deletions

View File

@ -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;
}
}