| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- //
- // NewRepairDetailListsCell.h
- // IBOSS
- //
- // Created by apple on 16/1/19.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- //功能描述: 新增维修明细单元格类
- #import <UIKit/UIKit.h>
- #import "NewRepairDetailListsCellDelegate.h"
- #import "NewRepairItemModel.h"
- #import "StatusInfoTextVC.h"
- #import "ArgumentSetting.h"
- @interface NewRepairDetailListsCell : UITableViewCell<UITextFieldDelegate>
- /**
- 编码
- */
- @property (nonatomic, strong) UILabel *code;
- /**
- 唯一编码
- */
- @property (nonatomic, strong) UILabel *onlyCode;
- /**
- 维修数量
- */
- @property (nonatomic, strong) UILabel *repairQuantity;
- /**
- 完成数量
- */
- @property (nonatomic, strong) UILabel *completedQuantity;
- /**
- 品牌
- */
- @property (nonatomic, strong) UILabel *brandName;
- /**
- 回执数量
- */
- @property (nonatomic, strong) UITextField *receiptQuantity;
- /**
- 面积
- */
- @property (nonatomic, strong) UILabel *acreage;
- /**
- 回执备注
- */
- @property (nonatomic, strong) UITextField *remark;
- /**
- 维修id
- */
- @property (nonatomic,strong) NSString *repairId;
- /**
- 明细id
- */
- @property (nonatomic,strong) NSString *detailId;
- /**
- 委外id
- */
- @property (nonatomic,strong) NSString *salesDetailId;
- /**
- 单元格索引
- */
- @property (nonatomic) NSInteger cellIndex;
- /**
- 单元格高度
- */
- @property (nonatomic) CGFloat cellHeight;
- /**
- 设置新增维修明细frame
- @param model <#model description#>
- */
- - (void)parseInfoModel:(NewRepairItemModel*)model;
- /**
- 新增维修明细代理
- */
- @property (nonatomic, weak) id<NewRepairDetailListsCellDelegate> delegate;
- @end
|