1234567891011121314151617181920212223242526272829 |
- //
- // ASHomeCategoryModel.m
- // Asteria
- //
- // Created by iOS on 2023/6/6.
- //
- #import "ASHomeCategoryModel.h"
- @implementation ASHomeCategoryModel
- + (ASHomeCategoryModel *)demoModel {
- ASHomeCategoryModel *m = [ASHomeCategoryModel new];
- m.title = @"Hot Selling";
- m.typeId = [NSString stringWithFormat:@"%u", arc4random()%120221];
- m.imgUrl = @"https://www.short-haircut.com/wp-content/uploads/2019/01/9-short-layered-haircuts-for-black-women-1001201920019.jpg";
- return m;
- }
- - (ASJumpModel *)toJumpM {
- ASJumpModel *m = [ASJumpModel new];
- m.title = self.title;
- m.type = self.type;
- m.link = self.typeId;
- m.image = self.imgUrl;
- return m;
- }
- @end
|