Documentation
¶
Index ¶
Constants ¶
View Source
const ( // It refers to the prepayment order, and the buyer can pledge the future cargo right. ADVANCE = "advance" // It refers to account receivable order, and the supplier can pledge the documents // of accounts receivable orders. ACCOUNT_RECEIVABLE = "account-receivable-order" // It refers to financing warehouse order, and the supplier can pledge the inventory. FINACING_WAREHOUSE = "financing-warehouse-order" NORMAL = "normal" )
View Source
const ( SUCCESS = 1 ERROR = 0 )
View Source
const ( DISTRIBUTOR_SERVICE = "distributor" SUPPLIER_SERVICE = "supplier" BANK_SERVICE = "bank" LOGISTICS_SERVICE = "logistics" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DigitalObject ¶
type Form ¶
type Form struct { // The type indicates which method you will use to get the loan. Type string SupplierName string `json:"supplier_name"` DistributorName string `json:"distributor_name"` LogisticsName string `json:"logistics_name"` Num int `json:"num"` }
Someone who wants to get loan must write this form. The bank will according to this form to consider whether you can get loan.
type Order ¶
type Order struct { OrderType string `json:"order_type"` OrderPrice int `json:"order_price"` OrderCount int `json:"order_count"` DistributorName string `json:"distributor_name"` }
There are three different order types, which represent different financing modes, so as to match different linkage paths.
type PaymentPromise ¶
Click to show internal directories.
Click to hide internal directories.