indicators_data.go 634 B

1234567891011121314151617181920212223242526
  1. package model
  2. type IndicatorsData struct {
  3. Id int64 `json:"id"`
  4. PastureId int64 `json:"pastureId"`
  5. Year string `json:"year"`
  6. Month string `json:"month"`
  7. Kind string `json:"kind"`
  8. Value string `json:"value"`
  9. CreatedAt int64 `json:"createdAt"`
  10. UpdatedAt int64 `json:"updatedAt"`
  11. }
  12. func (d *IndicatorsData) TableName() string {
  13. return "indicators_data"
  14. }
  15. func NewDataIndicators(pastureId int64, year, month, value, indicatorKind string) *IndicatorsData {
  16. return &IndicatorsData{
  17. PastureId: pastureId,
  18. Year: year,
  19. Month: month,
  20. Kind: indicatorKind,
  21. Value: value,
  22. }
  23. }