Skip to content

Commit

Permalink
fix: 고객 등록 메세지 미변경사항 반영 #1
Browse files Browse the repository at this point in the history
생년월일 형식 변경사항 반영
Integer(4)-Integer(2)-Integer(2)
=>
Integer(2)-Integer(2)-Integer(2)
  • Loading branch information
PgmJun committed Apr 18, 2023
1 parent d60463f commit 8cdc790
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class OutputMessage {

public final static String REGISTER_CLIENT_MESSAGE = "고객 등록을 위하여, 정보를 입력해주세요.";
public final static String INPUT_REGISTER_ACCOUNT_NUMBER_MESSAGE = "등록하실 계좌번호를 입력해주세요. (Integer-Integer-Integer 형식)";
public final static String INPUT_REGISTER_CLIENT_BIRTH_MESSAGE = "생년월일을 입력해주세요. (2000-01-01 형식)";
public final static String INPUT_REGISTER_CLIENT_BIRTH_MESSAGE = "생년월일을 입력해주세요. (00-01-01 형식)";
public final static String INPUT_REGISTER_CLIENT_TEL_MESSAGE = "전화번호를 입력해주세요. (010-1234-1234 형식)";
public final static String INPUT_REGISTER_CLIENT_ADDRESS_MESSAGE = "거주지 주소를 입력해주세요.";
public final static String INPUT_REGISTER_CLIENT_PASSWORD_MESSAGE = "사용하실 비밀번호를 입력해주세요. (정수 4글자)";
Expand Down

0 comments on commit 8cdc790

Please sign in to comment.