8 lines
180 B
Go
8 lines
180 B
Go
|
package model
|
||
|
|
||
|
type WithdrawSupplierCashRes struct {
|
||
|
PendingCash float64 `json:"pendingCash"`
|
||
|
SuccessCash float64 `json:"successCash"`
|
||
|
RejectCash float64 `json:"rejectCash"`
|
||
|
}
|