account_detail.go 320 字节
package domain

type AccountDetail struct {
	// 分红预算单号
	DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"`
	// 分红类型,1订单分红,2退货冲销,3金额激励
	DividendsType int32 `json:"dividendsType"`
	//	分红金额
	DividendsAmount float64 `json:"dividendsAmount"`
}