query.go 295 B

12345678
  1. package chart_series_edb_mapping
  2. import "hongze/hongze_yb/global"
  3. func GetChartSeriesEdbByChartInfoId(chartInfoId int) (items []*ChartSeriesEdbMapping, err error) {
  4. err = global.MYSQL["data"].Model(ChartSeriesEdbMapping{}).Where("chart_info_id = ?", chartInfoId).Scan(&items).Error
  5. return
  6. }