| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // CustomerCurrentListCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2021/2/25.
- // Copyright © 2021 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CustomerCurrentSummaryListModel.h"
- @interface CustomerCurrentListCell : UITableViewCell
- @property(nonatomic,strong)UILabel *lblCustomerName;
- @property(nonatomic,strong)UILabel *lblAddress;
- @property(nonatomic,strong)UILabel *lblCustomerCode;
- @property(nonatomic,strong)UILabel *lblTelephone;
- @property(nonatomic,strong) UILabel *lblLastDepositReceived;
- @property(nonatomic,strong) UILabel *lblNextDepositReceived;
- @property(nonatomic,strong)UILabel *lblLastAccountReceivable;
- @property(nonatomic,strong)UILabel *lblSalesAmount;
- @property(nonatomic,strong)UILabel *lblRefundAmount;
- @property(nonatomic,strong)UILabel *lblAdjustAmount;
- //核销额
- @property(nonatomic,strong) UILabel *lblVerificationSum;
- //期末应收
- @property(nonatomic,strong) UILabel *lblNextAccountReceivable ;
- @property(nonatomic,strong) UILabel *lblBalanceAmount ;
- @property(nonatomic,strong) UILabel *lblDepositReceivedEarnest ;
- @property(nonatomic,assign) CGFloat cellHeight;
- @property(nonatomic,strong) UIView *bottomSeparator;
- -(void) setCustomerCurrentListCell:(CustomerCurrentSummaryListModel*)currentSummaryListModel advanceFlag:(NSString*)advanceFlag;
- @end
|