号码别名,创建后不返回数据

This commit is contained in:
Shaun Chyxion 2021-09-14 00:25:14 +08:00 committed by Donghuang
parent 4133a86da2
commit bf1fff5c36

View File

@ -61,4 +61,13 @@ public class PhoneAliasController
}
}
/**
* {@inheritDoc}
*/
@Override
public ViewModel<PhoneAlias> create(final FormCreatePhoneAlias form) {
super.create(form);
// 创建后不返回号码数据
return new ViewModel<>();
}
}