12345678910111213141516171819202122 |
- // =================================================================================
- // Code generated by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package do
- import (
- "github.com/gogf/gf/v2/frame/g"
- "github.com/gogf/gf/v2/os/gtime"
- )
- // FundLastNav is the golang structure of table dc_fund_last_nav for DAO operations like Where/Data.
- type FundLastNav struct {
- g.Meta `orm:"table:dc_fund_last_nav, do:true"`
- FundId interface{} // 基金id,'HF'开头(后加36进制编码格式,不足8位长度左补零) 例:HF00000001
- PriceDate *gtime.Time // 净值日期
- PrePriceDate *gtime.Time // 上一个净值日期
- Nav interface{} // 单位净值
- CumulativeNav interface{} // 考虑分红再投资的单位累计净值
- CumulativeNavWithdrawal interface{} // 分红不投资的单位累计净值
- UpdateTime *gtime.Time // 修改时间;第一次创建时与CreatTime值相同,修改时与修改时间相同
- }
|