//
|
// CustomerContentQATCell.swift
|
// WanPai
|
//
|
// Created by 无故事王国 on 2023/6/30.
|
//
|
|
import UIKit
|
|
class CustomerContentQATCell: UITableViewCell {
|
@IBOutlet weak var label_content: UILabel!
|
|
var noticeItemModel:NoticeItemModel!{
|
didSet{
|
label_content.text = noticeItemModel.quesTitle
|
}
|
}
|
|
override func awakeFromNib() {
|
super.awakeFromNib()
|
selectionStyle = .none
|
}
|
}
|