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