//
// AssessmentViewController.h
// Lighting
//
// Created by 曹云霄 on 2016/12/6.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import "BaseViewController.h"
@interface AssessmentViewController : BaseViewController
/**
考核tableview
*/
@property (weak, nonatomic) IBOutlet UITableView *assessmentTableView;
/**
考核标题
*/
@property (weak, nonatomic) IBOutlet UILabel *assessmentTitleLabel;
/**
考核时间
*/
@property (weak, nonatomic) IBOutlet CountDownLabel *assessmentTimeLabel;
/**
学习任务ID
*/
@property (nonatomic,copy) NSString *taskId;
@end
-
曹云霄 authored81f157cd