- package sb
- import "time"
- type KjXjllbNb struct {
- ID uint `json:"id" gorm:"primaryKey"`
- CreatedAt time.Time `json:"createdAt"`
- UpdatedAt time.Time `json:"updatedAt"`
- YearMainID uint `json:"yearMainID"`
- Type int `json:"type"` // 对应现金表行次
- Project string `json:"project"`
- YearTotal float64 `json:"yearTotal"` // 本期
- LastYearTotal float64 `json:"lastYearTotal"` // 上期
- }
|