获取"可见性"的值
String get visibility => this._visibility;
设置"可见性"的值
set visibility(String? value) { _visibility = value == null ? '' : value; }