20 lines
494 B
Objective-C
20 lines
494 B
Objective-C
//
|
|
// PetStoresViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by 祝发冬 on 2020/4/19.
|
|
// Copyright © 2020 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
#import "FormatTankAddCamera.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PetStoresViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource>
|
|
@property (weak, nonatomic) IBOutlet UITableView *tableView;
|
|
@property (nonatomic, strong) FormatTankAddCamera *store;//一个商店的
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|