mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-11 04:59:21 +08:00
22 lines
541 B
Go
22 lines
541 B
Go
/***************************************************
|
|
** @Desc : This file for ...
|
|
** @Time : 2019/12/17 17:50
|
|
** @Author : yuebin
|
|
** @File : platform_profit
|
|
** @Last Modified by : yuebin
|
|
** @Last Modified time: 2019/12/17 17:50
|
|
** @Software: GoLand
|
|
****************************************************/
|
|
package models
|
|
|
|
type PlatformProfit struct {
|
|
MerchantName string
|
|
AgentName string
|
|
SupplierName string
|
|
PayTypeName string
|
|
OrderAmount float64
|
|
OrderCount int
|
|
PlatformProfit float64
|
|
AgentProfit float64
|
|
}
|