UseEarnestAmountModel.m 847 B

123456789101112131415161718192021222324252627
  1. //
  2. // UseEarnestAmountModel.m
  3. // IBOSSmini
  4. //
  5. // Created by ssl on 2018/2/28.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "UseEarnestAmountModel.h"
  9. @implementation UseEarnestAmountModel
  10. - (nonnull id)copyWithZone:(nullable NSZone *)zone {
  11. UseEarnestAmountModel *copy = [[[self class] allocWithZone:zone] init];
  12. copy->_orderID = [_orderID copy];
  13. copy->_operationType = [_operationType copy];
  14. copy->_earnestSum = [_earnestSum copy];
  15. copy->_earnestID = [_earnestID copy];
  16. copy->_pendAmount = [_pendAmount copy];
  17. copy->_settlementType = [_settlementType copy];
  18. copy->_settlementTypeName = [_settlementTypeName copy];
  19. copy->_moneyInformation = [_moneyInformation copy];
  20. copy->_unUserdEarnest = [_unUserdEarnest copy];
  21. copy->_remarks = [_remarks copy];
  22. return copy;
  23. }
  24. @end