use_x_ray_flow_bean_entity.dart 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import 'package:bbyyy/generated/json/base/json_convert_content.dart';
  2. import 'package:bbyyy/generated/json/base/json_field.dart';
  3. class UseXRayFlowBeanEntity with JsonConvert<UseXRayFlowBeanEntity> {
  4. UseXRayFlowBeanData data;
  5. String error;
  6. }
  7. class UseXRayFlowBeanData with JsonConvert<UseXRayFlowBeanData> {
  8. @JSONField(name: "Valid")
  9. bool valid;
  10. @JSONField(name: "Flows")
  11. List<UseXRayFlowBeanDataFlows> flows;
  12. }
  13. class UseXRayFlowBeanDataFlows with JsonConvert<UseXRayFlowBeanDataFlows> {
  14. int id;
  15. @JSONField(name: "Type")
  16. int type;
  17. @JSONField(name: "user_uid")
  18. int userUid;
  19. @JSONField(name: "UserName")
  20. String userName;
  21. @JSONField(name: "UserPic")
  22. String userPic;
  23. @JSONField(name: "trade_uid")
  24. int tradeUid;
  25. @JSONField(name: "TraderName")
  26. String traderName;
  27. @JSONField(name: "TraderPic")
  28. String traderPic;
  29. @JSONField(name: "pay_time")
  30. String payTime;
  31. @JSONField(name: "PayWay")
  32. int payWay;
  33. @JSONField(name: "paid_amount")
  34. double paidAmount;
  35. @JSONField(name: "user_balance")
  36. double userBalance;
  37. @JSONField(name: "order_uid")
  38. int orderUid;
  39. @JSONField(name: "peer_flow_id")
  40. int peerFlowId;
  41. String remark;
  42. }