| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- // ReceiptDetailModel
- // IOBSS 2.0
- //
- // Created by 刘瀚璘 on 2017.7.18
- // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 系统名称:
- // 功能描述:定制品详细Model
- #import <Foundation/Foundation.h>
- @interface ReceiptDetailModel : NSObject
- /**
- * 配送日期
- */
- @property (nonatomic,strong) NSString *deliveryDate;
- /**
- * 金额
- */
- @property (nonatomic,assign) int receivables;
- /**
- * 完成金额
- */
- @property (nonatomic,assign) int completeReceivables;
- /**
- * 回执数量
- */
- @property (nonatomic,assign) int receiptAmount;
- /**
- * 金额类型
- */
- @property (nonatomic,assign) int receivablesType;
- /**
- * 回执标示
- */
- @property (nonatomic,assign) BOOL *receiptFlag;
- /**
- * 回执类型
- */
- @property (nonatomic,assign) int receiptType;
- /**
- * 延迟日期
- */
- @property (nonatomic,strong) NSString *nextDeliveryDate;
- /**
- * 回收标示
- */
- @property (nonatomic,assign) int recoverFlag;
- /**
- * 账务日期
- */
- @property (nonatomic,strong) NSString *accountDate;
- /**
- * 明细ID
- */
- @property (nonatomic,assign) int detailID;
- /**
- * 送货单ID
- */
- @property (nonatomic,assign) int deliveryID;
- /**
- * 来源类型
- */
- @property (nonatomic,assign) int sourceFromName;
- /**
- * 数据来源ID
- */
- @property (nonatomic,assign) int sourceFrom;
- /**
- * 来源单号
- */
- @property (nonatomic,strong) NSString *invoiceNo;
- /**
- * 单据ID
- */
- @property (nonatomic,assign) int invoiceID;
- /**
- * 单据明细ID
- */
- @property (nonatomic,assign) int invoiceDetailID;
- /**
- * 送货单的送货数量
- */
- @property (nonatomic,strong) NSString *deliveryQuantity;
- /**
- * 出库数量
- */
- @property (nonatomic,strong) NSString *outQuantity;
- /**
- * 送货单回执类型
- */
- @property (nonatomic,strong) NSString *deliveryReceiptType;
- /**
- * 明细回执类型
- */
- @property (nonatomic,strong) NSString *detailReceiptTypeName;
- /**
- * 回执数量
- */
- @property (nonatomic,strong) NSString *receiptQuantity;
- /**
- * 回执备注
- */
- @property (nonatomic,strong) NSString *receiptRemarks;
- /**
- * 客户名称
- */
- @property (nonatomic,strong) NSString *customerName;
- /**
- * 联系人
- */
- @property (nonatomic,strong) NSString *contacts;
- /**
- * 联系电话--
- */
- @property (nonatomic,strong) NSString *telephone;
- /**
- * 送货地址
- */
- @property (nonatomic,strong) NSString *deliveryAddress;
- /**
- * 商品编码
- */
- @property (nonatomic,strong) NSString *code;
- /**
- * 唯一编码
- */
- @property (nonatomic,strong) NSString *onlyCode;
- /**
- * 商品名称
- */
- @property (nonatomic,strong) NSString *goodsName;
- /**
- * 商品属性1
- */
- @property (nonatomic,strong) NSString *expandAttribute;
- /**
- * 商品属性2
- */
- @property (nonatomic,strong) NSString *expandAttribute2;
- /**
- * 商品品牌
- */
- @property (nonatomic,strong) NSString *brandName;
- /**
- * 商品种类
- */
- @property (nonatomic,strong) NSString *kindName;
- /**
- * 商品品种
- */
- @property (nonatomic,strong) NSString *varietyName;
- /**
- * 商品系列
- */
- @property (nonatomic,strong) NSString *seriesName;
- /**
- * 单位
- */
- @property (nonatomic,strong) NSString *unitName;
- /**
- * 包装
- */
- @property (nonatomic,strong) NSNumber *mPackage;
- /**
- * 重量
- */
- @property (nonatomic,strong) NSNumber *weight;
- /**
- * 面积
- */
- @property (nonatomic,strong) NSNumber *acreage;
- /**
- * 商品等级
- */
- @property (nonatomic,strong) NSString *gradeName;
- /**
- * 规格
- */
- @property (nonatomic,strong) NSString *specification;
- /**
- * 色号
- */
- @property (nonatomic,strong) NSString *colorNumber;
- /**
- * 库区名称
- */
- @property (nonatomic,strong) NSString *warehouseName;
- /**
- * 仓位号
- */
- @property (nonatomic,strong) NSString *positionNumber;
- /**
- * 回库数量
- */
- @property (nonatomic,assign) int recoverQuantity;
- /**
- * 退货数量
- */
- @property (nonatomic,assign) int returnQuantity;
- /**
- * 备注
- */
- @property (nonatomic,strong) NSString *remarks;
- /**
- * 外协也要送货,区分是不是外协单子
- */
- @property (nonatomic,strong) NSString *salesDetailType;
- /**
- * 配送no
- */
- @property (nonatomic,strong) NSString *deliveryNo;
- @end
|