1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- //
- // GoodsInformationM.m
- // westkissMob
- //
- // Created by 王猛 on 2022/9/16.
- //
- #import "GoodsInformationM.h"
- @implementation GoodsInformationM
- + (GoodsInformationM *)wm_demoData {
- GoodsInformationM *m = [[GoodsInformationM alloc] init];
- m.title = @"Highlight Bob Wig Straight Middle Part Bob With Grey Highlights";
- m.sale_num = @"15K";
- m.reviews_count = @"231";
- m.href = @"www.baidu.com";
- m.price = @"146.10";
- m.final_price = @"146.10";
- m.price = @"171.88";
- m.save_price = @"13.65";
- NSMutableArray *couponAry = [[NSMutableArray alloc]init];
- for (int i=0; i<4; i++) {
- GoodsCoupon * coupon = [[GoodsCoupon alloc]init];
- coupon.coupon_title = @"99";
- coupon.coupon_details = @"5";
- coupon.coupon_code = @"111111";
- [couponAry addObject:coupon];
- }
- m.coupon = [couponAry copy];
-
-
- reviewsModel *reviewM = [[reviewsModel alloc]init];
- reviewM.startsNum = @"5";
- reviewM.reviewsNum = @"621";
- reviewM.showImgurls = @[@"https://media.glamour.com/photos/5f3e9ad26ed7249924aba0c7/1:1/w_1234,h_1234,c_limit/IMG_2772.jpg",
- @"https://media.glamour.com/photos/5f3e9ad26ed7249924aba0c7/1:1/w_1234,h_1234,c_limit/IMG_2772.jpg",
- @"https://media.glamour.com/photos/5f3e9ad26ed7249924aba0c7/1:1/w_1234,h_1234,c_limit/IMG_2772.jpg"];
- reviewM.picturesNum = @"100";
- m.reviews = reviewM;
- return m;
- }
- + (NSDictionary *)mj_objectClassInArray
- {
- return @{@"coupon": @"GoodsCoupon",
- };
- }
- + (NSDictionary *)mj_replacedKeyFromPropertyName {
- return @{
- @"goodsId": @"id",
- };
- }
- @end
- @implementation GoodsCoupon
- @end
- @implementation reviewsModel
- @end
|