SceneTopCell.swift 773 Bytes
//
//  SceneTopCell.swift
//  ParentAssistant
//
//  Created by Cao yang on 2018/3/24.
//  Copyright © 2018年 HANGZHOUTEAM. All rights reserved.
//

import UIKit

class SceneTopCell: UITableViewCell {

    @IBOutlet weak var scoreLab: UILabel!       //得分
    @IBOutlet weak var GPALab: UILabel!         //绩点
    @IBOutlet weak var LevelLab: UILabel!       //等级
    @IBOutlet weak var SuggestLab: UITextView!  //指导意见
    override func awakeFromNib() {
        super.awakeFromNib()
        self.backgroundColor = backGroundColor

        // Initialization code
    }

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }

}