We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41ac3c8 commit 5c43788Copy full SHA for 5c43788
1 file changed
src/repository/work_log_repository.ts
@@ -102,7 +102,8 @@ class WorkLogRepository {
102
{
103
user_work_log_id: Uint8Array;
104
user_id: Uint8Array;
105
- alba_id: Uint8Array;
+ alba_id: Uint8Array | null;
106
+ user_alba_schedule_id: Uint8Array | null;
107
work_date: Date | null;
108
start_time: Date | null;
109
end_time: Date | null;
@@ -113,7 +114,7 @@ class WorkLogRepository {
113
114
store: {
115
store_name: string | null;
116
};
- };
117
+ } | null;
118
}[]
119
> {
120
// 날짜 범위 설정 (해당 날짜의 00:00:00 ~ 23:59:59)
0 commit comments