zhengyiming
2025-11-13 c79f8a668dd8f2ef06f930489d535d70981e1c26
1
2
3
4
5
6
7
8
9
import { BountyCheckStatusEnum } from '@/constants';
import { CustomerApplyFileTypeListItem } from '@/components/commonView/utils';
 
export type Form = {
  extraListFiles: CustomerApplyFileTypeListItem[];
 
  status: BountyCheckStatusEnum;
  remark: string;
};