| 123456789101112131415161718192021222324252627 |
- //
- // UseEarnestAmountModel.m
- // IBOSSmini
- //
- // Created by ssl on 2018/2/28.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "UseEarnestAmountModel.h"
- @implementation UseEarnestAmountModel
- - (nonnull id)copyWithZone:(nullable NSZone *)zone {
- UseEarnestAmountModel *copy = [[[self class] allocWithZone:zone] init];
- copy->_orderID = [_orderID copy];
- copy->_operationType = [_operationType copy];
- copy->_earnestSum = [_earnestSum copy];
- copy->_earnestID = [_earnestID copy];
-
- copy->_pendAmount = [_pendAmount copy];
- copy->_settlementType = [_settlementType copy];
- copy->_settlementTypeName = [_settlementTypeName copy];
- copy->_moneyInformation = [_moneyInformation copy];
- copy->_unUserdEarnest = [_unUserdEarnest copy];
- copy->_remarks = [_remarks copy];
- return copy;
- }
- @end
|