/// 회사 및 지점 정보를 저장하는 클래스 class CompanyBranchInfo { final int? id; final String name; // 표시용 이름 (회사명 + 지점명 또는 회사명 (유형)) final String originalName; // 원래 이름 (회사 본사명 또는 지점명) final String? displayName; // UI에 표시할 이름 (주로 지점명) final bool isMainCompany; // 본사인지 지점인지 구분 final int? companyId; // 회사 ID final int? branchId; // 지점 ID final String? parentCompanyName; // 부모 회사명 (지점인 경우) CompanyBranchInfo({ required this.id, required this.name, required this.originalName, this.displayName, required this.isMainCompany, required this.companyId, required this.branchId, this.parentCompanyName, }); }