字典

FileType(文件类型): ``` FileTypeHouseIcon = 1 // 房屋图标 FileTypeCovers = 2 // 房屋封面 FileTypeInvestmentCase = 3 // InvestmentCase FileTypePropertyDetails = 4 // PropertyDetails FileTypeFinancials = 5 // Financials FileTypeBondIcon = 6 // 债券图标 FileTypeAuctionIcon = 7 // 竞拍图标 FileTypeDestroyDetail = 8 // 销毁详情? ``` BondType(债券类型): ``` BondTypeTemporary = 1 // 时效债券 BondTypeForever = 2 // 永续债券 ``` BondState(债券状态): ``` BondStateWaitPublish = 1 // 待发布 BondStatePublishing = 2 // 发布中 BondStateSelling = 3 // 销售中 BondStateSold = 4 // 已售完 BondStateTakeDown = 5 // 已下架 BondStateTimeout = 6 // 已超时 ``` HouseSaleType(房屋销售类型): ``` HouseSaleTypeBond = 1 // 债券 HouseSaleTypeAuction = 2 // 竞拍 ``` HouseType(房屋类型): ``` HouseTypeBusiness = 1 // 商业 HouseTypeLiving = 2 // 民用 ``` PropertyType(房屋资产类型): ``` PropertyTypeLease = 1 // 长期租赁 PropertyTypeForever = 2 // 永久业权 ``` DocumentType(房屋文档类型): ``` DocumentTypeSolicitors = 1 // Solicitors DocumentTypeSurveyors = 2 // Surveyors DocumentTypeTitleDeeds = 3 // TitleDeeds DocumentTypeCertificate = 4 // Certificate DocumentTypeCreditRisk = 5 // CreditRisk DocumentTypePayment = 6 // Payment ``` HouseState(房屋状态): ``` HouseStateNotCheck = 0 // 未审核 HouseStateChecked = 1 // 已审核 HouseStateCheckFail = 2 // 审核失败 HouseStateOffShelf = 3 //下架 ``` TxType(债券交易类型) ``` TxTypeBuyBond = 1 // 购买债券 TxTypeRedeem = 2 // 赎回债券 TxTypeExchangeIn = 3 // OTC购买债券 TxTypeExchangeOut = 4 // OTC卖出债券 TxTypeExchangeFroze = 5 // OTC冻结债券 TxTypeExchangeUnfroze = 6 // OTC解冻债券 TxTypeBonus = 7 // 债券分红 TxTypeBondEnd = 8 // 债券结束退款 TxTypeRefund = 9 // 退款?(暂未使用) ``` PayAuctionState(竞拍订单状态) ``` NoPayState = 0 // 未支付 PayState = 1 // 已支付 AuctionRefundState = 2 // 已退款 RefundingState = 3 // 退款中 ``` PayAuctionType(竞拍订单类型) ``` DepositAuctionInfo = 1 // 押金 SettingAuctionInfo = 2 // 自定义金额 ``` AuctionState(竞拍状态) ``` AuctionStateWaitCheck = 0 // 待审核 NoDisplay = 1 // 不展示 NoStart = 2 // 待竞拍 AuctioningNoPrice = 3 // 竞拍中,无人出价 AuctioningPrice = 4 // 竞拍中,有人出价 EndNoPayCustomize = 5 // 竞拍结束 SoldOut = 6 // 已售出 Suspend = 7 // 暂停 ``` DepositState(押金状态) ``` DepositStatePaid = 0 // 未支付 DepositStatePaid = 1 // 已支付 DepositStateRefund = 2 // 已退款 ```