| 1234567891011121314151617181920 |
- //
- // CollecteAmountCell.h
- // IBOSSmini
- //
- // Created by ssl on 2018/2/28.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CollecteAmountModel.h"
- @protocol UseCollecteAmountCellDelegate <NSObject>
- -(void)update:(int) position text:(NSString *) str;
- @end
- @interface CollecteAmountCell : UITableViewCell
- @property (nonatomic,assign) NSInteger position;
- @property(nonatomic,strong) UILabel *lblSettlementType;
- @property(nonatomic,strong) UITextField *txtEarnestSum;
- @property(nonatomic,weak) id<UseCollecteAmountCellDelegate> cellDelegate;
- -(void)parseEarnestInfo:(CollecteAmountModel *)earnestModel;
- @end
|