export interface StateModel { menuChoice: string; developerId: string; searchKey: string; selectKey: string; bodyParam?: BodyParam; appCategoryCodeTree: appCategoryCodeTreeProps[]; } export interface BodyParam { appName?: string | undefined; developerDingCorpId?: string | undefined; findStartTime?: string | undefined; findEndTime?: string | undefined; status?: string | undefined; appCategoryCodeList?: string[] | undefined; processorUnionId?: string; } export interface appCategoryCodeTreeProps { title: string; value: string; children?: appCategoryCodeTreeProps[]; }