| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // UnReceiptListModel.m
- // IBOSS
- //
- // Created by guan hong hou on 16/4/14.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:配送未回执模型
- #import "UnReceiptListModel.h"
- @implementation UnReceiptListModel
- #pragma mark - 私有函数
- /*!
- * 1.该方法是 `字典里的属性Key` 和 `要转化为模型里的属性名` 不一样 而重写的
- * 前:模型的属性 后:字典里的属性
- */
- + (nullable NSDictionary<NSString *, id> *)modelCustomPropertyMapper{
-
- return @{@"deliveryId":@"DeliveryID",
- @"arrangementId":@"ArrangementID",
- @"deliveryNo":@"DeliveryNo",
- @"arrangementNo":@"ArrangementNo",
- @"customerCode":@"CustomerCode",
- @"customerName":@"CustomerName",
- @"contacts":@"Contacts",
- @"telephone":@"Telephone",
- @"deliveryDate":@"DeliveryDate",
- @"deliveryAddress":@"DeliveryAddress",
- @"accountDate":@"AccountDate",
- @"truckId":@"TruckID", @"truckName":@"TruckName",
- @"organizationName":@"OrganizationName",@"staffName":@"StaffName"
- };
- }
- @end
|