123456789101112131415161718 |
- //
- // KXCalculateTableViewCell.h
- // QBCS
- //
- // Created by kuxuan on 2017/6/6.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface KXCalculateTableViewCell : UITableViewCell
- @property (nonatomic,strong)UILabel *numberLabel;
- @property (nonatomic,strong)UILabel *capLabel;
- @property (nonatomic,strong)UILabel *inteLabel;
- @property (nonatomic,strong)UILabel *totalsumLabel;
- @end
|