CollecteAmountCell.h 652 B

1234567891011121314151617181920
  1. //
  2. // CollecteAmountCell.h
  3. // IBOSSmini
  4. //
  5. // Created by ssl on 2018/2/28.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CollecteAmountModel.h"
  10. @protocol UseCollecteAmountCellDelegate <NSObject>
  11. -(void)update:(int) position text:(NSString *) str;
  12. @end
  13. @interface CollecteAmountCell : UITableViewCell
  14. @property (nonatomic,assign) NSInteger position;
  15. @property(nonatomic,strong) UILabel *lblSettlementType;
  16. @property(nonatomic,strong) UITextField *txtEarnestSum;
  17. @property(nonatomic,weak) id<UseCollecteAmountCellDelegate> cellDelegate;
  18. -(void)parseEarnestInfo:(CollecteAmountModel *)earnestModel;
  19. @end