| 1234567891011121314151617181920212223242526 |
- //
- // HJJoinApplySuccessContentView.h
- // HappyJob
- //
- // Created by Bob on 2019/4/9.
- // Copyright © 2019 Bob. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef NS_ENUM(NSInteger, HJJoinApplyContentViewType) {
-
- HJJoinApplyContentViewTypeSuccess,//拼团成功
- HJJoinApplyContentViewTypeFailed//拼团失败
- };
- @interface HJJoinApplySuccessContentView : UIView
- - (instancetype)initWithType:(HJJoinApplyContentViewType)type;
- - (void)configData:(NSDictionary *)data;
- @end
- NS_ASSUME_NONNULL_END
|