| 1234567891011121314151617181920212223242526272829 |
- //
- // AchievementsdetailCell.h
- // jitao
- //
- // Created by 罗云飞 on 2017/12/16.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ResultsDetailsModel.h"
- @interface AchievementsdetailCell : UITableViewCell
- @property(copy,nonatomic)UILabel *title;//标题
- @property(copy,nonatomic)UILabel *technicaltype;//技术类型
- @property(copy,nonatomic)UILabel *industry;//行业
- @property(copy,nonatomic)UILabel *maturity;//成熟度
- @property(copy,nonatomic)UILabel *transactionmode;//交易方式
- @property(copy,nonatomic)UILabel *price;//价格
- @property(copy,nonatomic)UILabel *fieldapplication;//适用领域
- @property(copy,nonatomic)UILabel *label;//标签
- @property(copy,nonatomic)UILabel *place;//地点
- @property(copy,nonatomic)UILabel *follow;//关注
- @property(copy,nonatomic)UILabel *orderintention;//接单意向
- @property(copy,nonatomic)UILabel *ordersnumber;//接单次数
- @property(copy,nonatomic)UILabel *place1;//地点
- - (void)assignment:(ResultsDetailsModel *)model;
- @end
|