You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
689 B

5 months ago
  1. // SPDX-License-Identifier: MIT
  2. struct PledgeType {
  3. uint256 tokenId;
  4. uint256 startTime;
  5. uint256 endTime;
  6. uint256 withdrawTime;
  7. uint256 pledgeAmount;
  8. uint256 rate;
  9. uint256 pledgeDay;
  10. address sender;
  11. bool isBlack;
  12. }
  13. struct ProductInfo {
  14. uint256 day;
  15. uint256 rate;
  16. }
  17. struct RecommendObjType {
  18. address key;
  19. address referrer;
  20. uint256 bindTime;
  21. uint256 contribute;
  22. }
  23. struct InvitationWithdrawRecordType{
  24. uint256 amount;
  25. uint256 createTime;
  26. }
  27. struct PledgeWithdrawRecordType{
  28. uint256 amount;
  29. uint256 createTime;
  30. uint256 tokenId;
  31. uint256 pledgeDay;
  32. uint256 _type;
  33. }