kj_xjllbnb.go 463 B

1234567891011121314
  1. package sb
  2. import "time"
  3. type KjXjllbNb struct {
  4. ID uint `json:"id" gorm:"primaryKey"`
  5. CreatedAt time.Time `json:"createdAt"`
  6. UpdatedAt time.Time `json:"updatedAt"`
  7. YearMainID uint `json:"yearMainID"`
  8. Type int `json:"type"` // 对应现金表行次
  9. Project string `json:"project"`
  10. YearTotal float64 `json:"yearTotal"` // 本期
  11. LastYearTotal float64 `json:"lastYearTotal"` // 上期
  12. }