dividends_details.go 247 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 package domain // 分红明细 type DividendsDetails struct { // 分红支出 DividendsExpense float64 `json:"dividendsExpense"` // 具体分红类型支出 DividendsExpenseByTypes []*DividendsExpenseByType `json:"dividendsExpenseByTypes"` }