class FollowList { int _code; FollowData _data; String _message; FollowList({int code, FollowData data, String message}) { this._code = code; this._data = data; this._message = message; } int get code => _code; set code(int code) => _code = code; FollowData get data => _data; set data(FollowData data) => _data = data; String get message => _message; set message(String message) => _message = message; FollowList.fromJson(Map json) { _code = json['code']; _data = json['data'] != null ? new FollowData.fromJson(json['data']) : null; _message = json['message']; } Map toJson() { final Map data = new Map(); data['code'] = this._code; if (this._data != null) { data['data'] = this._data.toJson(); } data['message'] = this._message; return data; } } class FollowData { int _currentPage; int _nextPage; List _result; int _totalPage; FollowData( {int currentPage, int nextPage, List result, int totalPage}) { this._currentPage = currentPage; this._nextPage = nextPage; this._result = result; this._totalPage = totalPage; } int get currentPage => _currentPage; set currentPage(int currentPage) => _currentPage = currentPage; int get nextPage => _nextPage; set nextPage(int nextPage) => _nextPage = nextPage; List get result => _result; set result(List result) => _result = result; int get totalPage => _totalPage; set totalPage(int totalPage) => _totalPage = totalPage; FollowData.fromJson(Map json) { _currentPage = json['current_page']; _nextPage = json['next_page']; if (json['result'] != null) { _result = new List(); json['result'].forEach((v) { _result.add(new FollowResult.fromJson(v)); }); } _totalPage = json['total_page']; } Map toJson() { final Map data = new Map(); data['current_page'] = this._currentPage; data['next_page'] = this._nextPage; if (this._result != null) { data['result'] = this._result.map((v) => v.toJson()).toList(); } data['total_page'] = this._totalPage; return data; } } class FollowResult { int _opusCollection; int _opusFollow; int _opusId; String _opusImg; String _opusIntroduce; int _opusIsEdit; int _opusJurisdiction; int _opusOriginal; int _opusSatisfied; int _opusSee; int _opusStatus; String _opusTime; String _opusTitle; int _opusType; int _userId; FollowResult( {int opusCollection, int opusFollow, int opusId, String opusImg, String opusIntroduce, int opusIsEdit, int opusJurisdiction, int opusOriginal, int opusSatisfied, int opusSee, int opusStatus, String opusTime, String opusTitle, int opusType, int userId}) { this._opusCollection = opusCollection; this._opusFollow = opusFollow; this._opusId = opusId; this._opusImg = opusImg; this._opusIntroduce = opusIntroduce; this._opusIsEdit = opusIsEdit; this._opusJurisdiction = opusJurisdiction; this._opusOriginal = opusOriginal; this._opusSatisfied = opusSatisfied; this._opusSee = opusSee; this._opusStatus = opusStatus; this._opusTime = opusTime; this._opusTitle = opusTitle; this._opusType = opusType; this._userId = userId; } int get opusCollection => _opusCollection; set opusCollection(int opusCollection) => _opusCollection = opusCollection; int get opusFollow => _opusFollow; set opusFollow(int opusFollow) => _opusFollow = opusFollow; int get opusId => _opusId; set opusId(int opusId) => _opusId = opusId; String get opusImg => _opusImg; set opusImg(String opusImg) => _opusImg = opusImg; String get opusIntroduce => _opusIntroduce; set opusIntroduce(String opusIntroduce) => _opusIntroduce = opusIntroduce; int get opusIsEdit => _opusIsEdit; set opusIsEdit(int opusIsEdit) => _opusIsEdit = opusIsEdit; int get opusJurisdiction => _opusJurisdiction; set opusJurisdiction(int opusJurisdiction) => _opusJurisdiction = opusJurisdiction; int get opusOriginal => _opusOriginal; set opusOriginal(int opusOriginal) => _opusOriginal = opusOriginal; int get opusSatisfied => _opusSatisfied; set opusSatisfied(int opusSatisfied) => _opusSatisfied = opusSatisfied; int get opusSee => _opusSee; set opusSee(int opusSee) => _opusSee = opusSee; int get opusStatus => _opusStatus; set opusStatus(int opusStatus) => _opusStatus = opusStatus; String get opusTime => _opusTime; set opusTime(String opusTime) => _opusTime = opusTime; String get opusTitle => _opusTitle; set opusTitle(String opusTitle) => _opusTitle = opusTitle; int get opusType => _opusType; set opusType(int opusType) => _opusType = opusType; int get userId => _userId; set userId(int userId) => _userId = userId; FollowResult.fromJson(Map json) { _opusCollection = json['opus_collection']; _opusFollow = json['opus_follow']; _opusId = json['opus_id']; _opusImg = json['opus_img']; _opusIntroduce = json['opus_introduce']; _opusIsEdit = json['opus_is_edit']; _opusJurisdiction = json['opus_jurisdiction']; _opusOriginal = json['opus_original']; _opusSatisfied = json['opus_satisfied']; _opusSee = json['opus_see']; _opusStatus = json['opus_status']; _opusTime = json['opus_time']; _opusTitle = json['opus_title']; _opusType = json['opus_type']; _userId = json['user_id']; } Map toJson() { final Map data = new Map(); data['opus_collection'] = this._opusCollection; data['opus_follow'] = this._opusFollow; data['opus_id'] = this._opusId; data['opus_img'] = this._opusImg; data['opus_introduce'] = this._opusIntroduce; data['opus_is_edit'] = this._opusIsEdit; data['opus_jurisdiction'] = this._opusJurisdiction; data['opus_original'] = this._opusOriginal; data['opus_satisfied'] = this._opusSatisfied; data['opus_see'] = this._opusSee; data['opus_status'] = this._opusStatus; data['opus_time'] = this._opusTime; data['opus_title'] = this._opusTitle; data['opus_type'] = this._opusType; data['user_id'] = this._userId; return data; } }