| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import 'package:bbyyy/generated/json/base/json_convert_content.dart';
- import 'package:bbyyy/generated/json/base/json_field.dart';
- class UseXRayFlowBeanEntity with JsonConvert<UseXRayFlowBeanEntity> {
- UseXRayFlowBeanData data;
- String error;
- }
- class UseXRayFlowBeanData with JsonConvert<UseXRayFlowBeanData> {
- @JSONField(name: "Valid")
- bool valid;
- @JSONField(name: "Flows")
- List<UseXRayFlowBeanDataFlows> flows;
- }
- class UseXRayFlowBeanDataFlows with JsonConvert<UseXRayFlowBeanDataFlows> {
- int id;
- @JSONField(name: "Type")
- int type;
- @JSONField(name: "user_uid")
- int userUid;
- @JSONField(name: "UserName")
- String userName;
- @JSONField(name: "UserPic")
- String userPic;
- @JSONField(name: "trade_uid")
- int tradeUid;
- @JSONField(name: "TraderName")
- String traderName;
- @JSONField(name: "TraderPic")
- String traderPic;
- @JSONField(name: "pay_time")
- String payTime;
- @JSONField(name: "PayWay")
- int payWay;
- @JSONField(name: "paid_amount")
- double paidAmount;
- @JSONField(name: "user_balance")
- double userBalance;
- @JSONField(name: "order_uid")
- int orderUid;
- @JSONField(name: "peer_flow_id")
- int peerFlowId;
- String remark;
- }
|