1234567891011121314151617181920 |
- //
- // FKSelectSpecAmountView.h
- // FirstLink
- //
- // Created by jack on 16/1/18.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKProductSpecDataCenter.h"
- @interface FKSelectSpecAmountView : UIView
- @property (nonatomic, strong) UILabel *amountLabel;
- @property (nonatomic, strong) UILabel *remainLabel;
- - (void)configWithSpecDataCenter:(FKProductSpecDataCenter *)dataCenter;
- @end
|