enum BindType { active(1, '主动绑定'), share(2, '分享绑定'); final int code; final String description; const BindType(this.code, this.description); }