| 12345678910111213141516171819202122232425 |
- //
- // CollecteAmountModel.m
- // IBOSSmini
- //
- // Created by ssl on 2018/2/28.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "CollecteAmountModel.h"
- @implementation CollecteAmountModel
- - (nonnull id)copyWithZone:(nullable NSZone *)zone {
- CollecteAmountModel *copy = [[[self class] allocWithZone:zone] init];
- copy->_settlementTypeID = [_settlementTypeID copy];
- copy->_remarks = [_remarks copy];
- copy->_remarks = [_remarks copy];
- copy->_settlementTypeName = [_settlementTypeName copy];
- copy->_valueFlag = _valueFlag;
- copy->_collecteAmount = [_collecteAmount copy];
- return copy;
- }
- @end
|