fund_last_nav.go 1.2 KB

1234567891011121314151617181920
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // FundLastNav is the golang structure for table fund_last_nav.
  9. type FundLastNav struct {
  10. FundId string `json:"fund_id" ` // 基金id,'HF'开头(后加36进制编码格式,不足8位长度左补零) 例:HF00000001
  11. PriceDate *gtime.Time `json:"price_date" ` // 净值日期
  12. PrePriceDate *gtime.Time `json:"pre_price_date" ` // 上一个净值日期
  13. Nav float64 `json:"nav" ` // 单位净值
  14. CumulativeNav float64 `json:"cumulative_nav" ` // 考虑分红再投资的单位累计净值
  15. CumulativeNavWithdrawal float64 `json:"cumulative_nav_withdrawal" ` // 分红不投资的单位累计净值
  16. UpdateTime *gtime.Time `json:"update_time" ` // 修改时间;第一次创建时与CreatTime值相同,修改时与修改时间相同
  17. }