-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02db2a7
commit 732b3b1
Showing
2 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
import { IsFile, MaxFileSize, MemoryStoredFile } from 'nestjs-form-data'; | ||
export class PopoSettingDto { | ||
readonly popo_crm_mail: string; // CRM = 고객 관계 관리 | ||
readonly donyeon_bank: string; // ex. 카카오뱅크 12345-6789-10 (홍길동) | ||
readonly dongyeon_service_time: string; // ex. 학기중 평일 12:30 ~ 13:30 | ||
readonly dongyeon_contact: string; // ex. (운영관리부) 0xx-xxxx-xxxx | ||
} | ||
|
||
export class RcStudentsListDto { | ||
@IsFile() | ||
@MaxFileSize(10 * 1024 * 1024) // 10 Mb | ||
readonly csv_file: MemoryStoredFile; | ||
} |