| 12345678910111213141516171819 |
- //
- // AchievementUserCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/8/26.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface AchievementUserCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *lblUserName;
- @property (strong, nonatomic) IBOutlet UILabel *lblDepartment;
- @property (strong, nonatomic) IBOutlet UILabel *lblUserCode;
- @end
|