30 lines
983 B
Dart
30 lines
983 B
Dart
/*
|
|
* @Author: wangyang 1147192855@qq.com
|
|
* @Date: 2022-07-20 15:09:30
|
|
* @LastEditors: wangyang 1147192855@qq.com
|
|
* @LastEditTime: 2022-07-20 15:13:23
|
|
* @FilePath: \marking_app\lib\common\model\progress\progress_page_params.dart
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
*/
|
|
import 'package:json_annotation/json_annotation.dart';
|
|
import 'package:marking_app/common/model/common/base_page.dart';
|
|
|
|
part 'progress_page_params.g.dart';
|
|
|
|
|
|
@JsonSerializable()
|
|
class ProgressPageParams extends BasePage {
|
|
|
|
@JsonKey(name: 'examSubjectId')
|
|
int examSubjectId;
|
|
|
|
ProgressPageParams({required this.examSubjectId,required page,required limit}):super(page,limit);
|
|
|
|
factory ProgressPageParams.fromJson(Map<String, dynamic> srcJson) => _$ProgressPageParamsFromJson(srcJson);
|
|
|
|
Map<String, dynamic> toJson() => _$ProgressPageParamsToJson(this);
|
|
|
|
}
|
|
|
|
|