entity.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package chart_info_future_good_profit
  2. import "time"
  3. // ChartInfoFutureGoodProfit 商品利润详情
  4. type ChartInfoFutureGoodProfit struct {
  5. ChartInfoId int `gorm:"primaryKey;column:chart_info_id;type:int(10) unsigned;not null" json:"-"` // 图表ID(chart_info表source=5的)
  6. ProfitName string `gorm:"column:profit_name;type:varchar(16);not null;default:''" json:"profitName"` // 领先单位
  7. ProfitNameEn string `gorm:"column:profit_name_en;type:varchar(16);not null;default:''" json:"ProfitNameEn"` // 领先单位
  8. XValue string `gorm:"column:x_value;type:text" json:"x_value"` // x轴的数据值
  9. YValue string `gorm:"column:y_value;type:text" json:"y_value"` // y轴的数据值
  10. CreateTime time.Time `gorm:"column:create_time;type:datetime" json:"createTime"` // 创建时间
  11. ModifyTime time.Time `gorm:"column:modify_time;type:datetime" json:"modifyTime"` // 更新时间
  12. }
  13. // TableName get sql table name.获取数据库表名
  14. func (m *ChartInfoFutureGoodProfit) TableName() string {
  15. return "chart_info_future_good_profit"
  16. }
  17. // ChartInfoFutureGoodProfitColumns get sql column name.获取数据库列名
  18. var ChartInfoFutureGoodProfitColumns = struct {
  19. ChartInfoId string
  20. ProfitName string
  21. ProfitNameEn string
  22. XValue string
  23. YValue string
  24. CreateTime string
  25. ModifyTime string
  26. }{
  27. ChartInfoId: "chart_info_id",
  28. ProfitName: "profit_name",
  29. ProfitNameEn: "profit_name_en",
  30. XValue: "x_value",
  31. YValue: "y_value",
  32. CreateTime: "create_time",
  33. ModifyTime: "modify_time",
  34. }