Files
yuyin_ios/SweetParty/主类/音悦新增/K歌厅/RoomSongYidianCell.h
2025-08-08 11:05:33 +08:00

30 lines
827 B
Objective-C
Executable File

//
// RoomSongYidianCell.h
// romantic
//
// Created by 八角_马方圆 on 2022/1/6.
// Copyright © 2022 romantic. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RoomSongListModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface RoomSongYidianCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *playingImgV;
@property (weak, nonatomic) IBOutlet UILabel *orderLab;
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
@property (weak, nonatomic) IBOutlet UILabel *songNameLab;
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
@property (weak, nonatomic) IBOutlet UILabel *tagLab;
@property (weak, nonatomic) IBOutlet UILabel *qingchangLab;
@property (weak, nonatomic) IBOutlet UIButton *statusButton;
@property(nonatomic, strong)RoomSongListModel *model;
@end
NS_ASSUME_NONNULL_END