mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
5 lines
156 B
TypeScript
5 lines
156 B
TypeScript
export const AccountUsernamePattern = {
|
|
pattern: /^[a-zA-Z0-9_]{5,20}$/g,
|
|
message: '只允许输入5-20位大小写字母、数字、下划线',
|
|
};
|