| 12345678910111213141516171819202122232425262728293031323334 |
- import 'package:bbyyy/generated/json/base/json_convert_content.dart';
- import 'package:bbyyy/generated/json/base/json_field.dart';
- class ComplainBeanEntity with JsonConvert<ComplainBeanEntity> {
- ComplainBeanData data;
- String error;
- }
- class ComplainBeanData with JsonConvert<ComplainBeanData> {
- int total;
- List<ComplainBeanDataData> data;
- }
- class ComplainBeanDataData with JsonConvert<ComplainBeanDataData> {
- @JSONField(name: "handle_result")
- String handleResult;
- int id;
- @JSONField(name: "shop_uid")
- int shopUid;
- @JSONField(name: "shop_pic")
- String shopPic;
- String content;
- @JSONField(name: "complain_time")
- String complainTime;
- @JSONField(name: "handle_time")
- String handleTime;
- int uid;
- @JSONField(name: "shop_name")
- String shopName;
- @JSONField(name: "owner_uid")
- int ownerUid;
- String snapshots;
- bool handled;
- }
|