fund_last_nav.go 1.1 KB

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