12345678910111213141516171819202122 |
- //
- // LDAchievementListCell.h
- // YouHuiProject
- //
- // Created by liuxueli on 2018/11/20.
- // Copyright © 2018 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "LDAccountModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface LDAchievementListCell : UITableViewCell
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *yearLabel;
- @property(nonatomic,strong)UILabel *ordernumLabel;
- @property(nonatomic,strong)UILabel *pricelabel;
- @property(nonatomic,strong)LDAccountModel *model;
- @end
- NS_ASSUME_NONNULL_END
|