#import "SaleInputState.h" @interface HMSaleInputDetail_contract : ZJBaseModel @property (nonatomic, strong) NSString * code; @property (nonatomic, strong) NSString * uuid; @property (nonatomic, strong) NSString * name; @end @interface HMSaleInputDetail_store : ZJBaseModel @property (nonatomic, strong) NSString * code; @property (nonatomic, strong) NSString * uuid; @property (nonatomic, strong) NSString * name; @end @interface HMSaleInputDetail_tenant : ZJBaseModel @property (nonatomic, strong) NSString * code; @property (nonatomic, strong) NSString * uuid; @property (nonatomic, strong) NSString * name; @end @protocol HMSaleInputDetail_payments @end @interface HMSaleInputDetail_payments_payment : ZJBaseModel @property (nonatomic, strong) NSString * code; @property (nonatomic, strong) NSString * uuid; @property (nonatomic, strong) NSString * name; @end @interface HMSaleInputDetail_payments : ZJBaseModel @property (nonatomic, strong) NSNumber * total; @property (nonatomic, strong) HMSaleInputDetail_payments_payment * payment; @end @interface HMSaleInputDetail : ZJBaseModel @property (nonatomic, strong) NSString * oper; @property (nonatomic, strong) NSMutableArray < Optional> * mediaFiles; @property (nonatomic, strong) NSNumber * saleCount; @property (nonatomic, strong) NSString * saleDate; @property (nonatomic, strong) HMSaleInputDetail_contract * contract; @property (nonatomic, strong) HMSaleInputDetail_store * store; @property (nonatomic, strong) NSString * receiver; @property (nonatomic, strong) NSString * billNumber; @property (nonatomic, strong) NSString * state; @property (nonatomic, assign) BOOL balance; @property (nonatomic, strong) HMSaleInputDetail_tenant * tenant; @property (nonatomic, strong) NSMutableArray * payments; @property (nonatomic, strong) SaleInputState *z_state; @end