DSCSpecialCModel.h
1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// DSCSpecialCModel.h
// DSCnliveShopSDK
//
// Created by zhaolin on 2018/12/29.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DSCSpecialCModel : NSObject
/**
特别定制顶部店铺图片/新闻顶部图片
@param shopId 店铺id
@param result 结果
*/
+(void)postShopInfoWithShopId:(NSString*)shopId result:(void (^)(NSString * scBannerImageUrl, NSString * newsBannerImageUrl, NSString * errorMessage))result;
/**
商品特别定制
@param shopId 商家id
@param uid 用户id
@param goodsId 商品id
@param type 类型 1个人 2公司
@param phone 手机号
@param title type 1 个人名称 type 2 公司名称
@param titles type 1 性别 type 2 职位
@param result 结果
*/
+(void)postShopGoodsMadeWithShopId:(NSString*)shopId uid:(NSString*)uid goodsId:(NSString*)goodsId type:(NSString*)type phone:(NSString*)phone title:(NSString*)title titles:(NSString*)titles result:(void (^)(BOOL isSuccess, NSString * errorMessage))result;
@end
NS_ASSUME_NONNULL_END