결재 템플릿 단계 적용 구현
- ApprovalTemplate 엔티티·DTO·원격 리포지토리 추가 - ApprovalController에 템플릿 로딩/적용 상태와 assignSteps 호출 연동 - ApprovalPage 단계 탭에 템플릿 선택 UI 및 적용 확인 다이얼로그 구현 - 템플릿 적용 단위 테스트와 IMPLEMENTATION_TASKS 현황 갱신
This commit is contained in:
@@ -3,10 +3,24 @@ import 'package:superport_v2/core/common/models/paginated_result.dart';
|
||||
import '../entities/group.dart';
|
||||
|
||||
abstract class GroupRepository {
|
||||
/// 그룹 목록 조회
|
||||
Future<PaginatedResult<Group>> list({
|
||||
int page = 1,
|
||||
int pageSize = 20,
|
||||
String? query,
|
||||
bool? isDefault,
|
||||
bool? isActive,
|
||||
});
|
||||
|
||||
/// 그룹 신규 등록
|
||||
Future<Group> create(GroupInput input);
|
||||
|
||||
/// 그룹 정보 수정
|
||||
Future<Group> update(int id, GroupInput input);
|
||||
|
||||
/// 그룹 삭제(소프트)
|
||||
Future<void> delete(int id);
|
||||
|
||||
/// 그룹 복구
|
||||
Future<Group> restore(int id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user