excel_sheet.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package excel
  2. import (
  3. "eta_gn/eta_chart_lib/global"
  4. "time"
  5. )
  6. type ExcelSheet struct {
  7. ExcelSheetId int `gorm:"column:excel_sheet_id;primaryKey" orm:"column(excel_sheet_id);pk"`
  8. ExcelInfoId int `gorm:"column:excel_info_id" description:"excel的id"`
  9. SheetName string `gorm:"column:sheet_name" description:"sheet名称"`
  10. PageNum int `gorm:"column:page_num" description:"总页码数"`
  11. Index string `gorm:"column:index" description:"excel数据中的index"`
  12. Sort int `gorm:"column:sort" description:"排序"`
  13. Config string `gorm:"column:config" description:"配置信息"`
  14. CalcChain string `gorm:"column:calc_chain" description:"计算公式"`
  15. ModifyTime time.Time `gorm:"column:modify_time" description:"最近修改日期"`
  16. CreateTime time.Time `gorm:"column:create_time" description:"创建日期"`
  17. }
  18. func (excelSheet *ExcelSheet) Update(cols []string) (err error) {
  19. o := global.DmSQL["data"]
  20. err = o.Model(excelSheet).Select(cols).Updates(excelSheet).Error
  21. return
  22. }
  23. func AddExcelSheet(excelInfo *ExcelSheet) (err error) {
  24. o := global.DmSQL["data"]
  25. err = o.Create(excelInfo).Error
  26. return
  27. }
  28. func GetAllSheetList(excelInfoId int) (item []*ExcelSheet, err error) {
  29. o := global.DmSQL["data"]
  30. sql := ` SELECT *
  31. FROM excel_sheet WHERE 1=1 AND excel_info_id = ? `
  32. sql += " ORDER BY sort asc "
  33. err = o.Raw(sql, excelInfoId).Scan(&item).Error
  34. return
  35. }
  36. type SheetItem struct {
  37. ExcelSheetId int `gorm:"column:excel_sheet_id;primaryKey" json:"-" orm:"column(excel_sheet_id);pk"`
  38. ExcelInfoId int `gorm:"column:excel_info_id" description:"excel的id" json:"-"`
  39. SheetName string `gorm:"column:sheet_name" description:"sheet名称" `
  40. PageNum int `gorm:"column:page_num" description:"数据总页码数" `
  41. Index string `gorm:"column:index" description:"excel数据中的index" `
  42. Sort int `gorm:"column:sort" description:"排序" `
  43. Config string `gorm:"column:config" description:"sheet配置" `
  44. CalcChain string `gorm:"column:calc_chain" description:"计算公式"`
  45. ModifyTime time.Time `gorm:"column:modify_time" description:"最近修改日期" json:"-"`
  46. CreateTime time.Time `gorm:"column:create_time" description:"创建日期"`
  47. Data *ExcelSheetData `description:"excel的数据"`
  48. }
  49. func GetAllSheetItemList(excelInfoId int) (item []*SheetItem, err error) {
  50. o := global.DmSQL["data"]
  51. sql := ` SELECT *
  52. FROM excel_sheet WHERE 1=1 AND excel_info_id = ? `
  53. sql += " ORDER BY sort asc "
  54. err = o.Raw(sql, excelInfoId).Scan(&item).Error
  55. return
  56. }
  57. func GetAllNoConfigSheetItemList(excelInfoId int) (item []*SheetItem, err error) {
  58. o := global.DmSQL["data"]
  59. sql := ` SELECT excel_sheet_id,excel_info_id,sheet_name,sort,page_num,create_time
  60. FROM excel_sheet WHERE 1=1 AND excel_info_id = ? `
  61. sql += " ORDER BY sort asc "
  62. err = o.Raw(sql, excelInfoId).Scan(&item).Error
  63. return
  64. }
  65. type AddExcelSheetParams struct {
  66. ExcelSheetId int `gorm:"column:excel_sheet_id;primaryKey" orm:"column(excel_sheet_id);pk"`
  67. ExcelInfoId int `gorm:"column:excel_info_id" description:"excel的id" `
  68. SheetName string `gorm:"column:sheet_name" description:"sheet名称" `
  69. Index string `gorm:"column:index" description:"excel数据中的index" `
  70. Sort int `gorm:"column:sort" description:"排序" `
  71. Config string `gorm:"column:config" description:"配置信息" `
  72. CalcChain string `gorm:"column:calc_chain" description:"计算公式" `
  73. DataList []*ExcelSheetData `gorm:"column:data_list" description:"excel的数据" `
  74. }