excel_sheet.go 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package excel
  2. import (
  3. "eta/eta_api/global"
  4. "eta/eta_api/utils"
  5. "time"
  6. )
  7. // ExcelSheet excel表格详情表
  8. type ExcelSheet struct {
  9. ExcelSheetId int `orm:"column(excel_sheet_id);pk" gorm:"primaryKey" `
  10. ExcelInfoId int `description:"excel的id"`
  11. SheetName string `description:"sheet名称"`
  12. PageNum int `description:"总页码数"`
  13. Index string `description:"excel数据中的index"`
  14. Sort int `description:"排序"`
  15. Config string `description:"配置信息"`
  16. CalcChain string `description:"计算公式"`
  17. ModifyTime time.Time `description:"最近修改日期"`
  18. CreateTime time.Time `description:"创建日期"`
  19. Frozen string `description:"冻结行"`
  20. }
  21. // Update 更新 excel表格的sheet基础信息
  22. func (excelSheet *ExcelSheet) Update(cols []string) (err error) {
  23. err = global.DbMap[utils.DbNameIndex].Select(cols).Updates(excelSheet).Error
  24. return
  25. }
  26. // AddExcelSheet 新增excel表格的sheet基础信息
  27. func AddExcelSheet(excelInfo *ExcelSheet) (err error) {
  28. o := global.DbMap[utils.DbNameIndex]
  29. // 表格信息入库
  30. err = o.Create(excelInfo).Error
  31. return
  32. }
  33. // GetAllSheetList 根据excel_id获取所有的sheet
  34. func GetAllSheetList(excelInfoId int) (item []*ExcelSheet, err error) {
  35. sql := ` SELECT *
  36. FROM excel_sheet WHERE 1=1 AND excel_info_id = ? `
  37. sql += " ORDER BY sort asc "
  38. err = global.DbMap[utils.DbNameIndex].Raw(sql, excelInfoId).Find(&item).Error
  39. return
  40. }
  41. // SheetItem excel表格详情表
  42. type SheetItem struct {
  43. ExcelSheetId int `orm:"column(excel_sheet_id);pk" gorm:"primaryKey" json:"-"`
  44. ExcelInfoId int `description:"excel的id" json:"-"`
  45. SheetName string `description:"sheet名称"`
  46. PageNum int `description:"数据总页码数"`
  47. Index string `description:"excel数据中的index"`
  48. Sort int `description:"排序"`
  49. Config string `description:"sheet配置"`
  50. CalcChain string `description:"计算公式"`
  51. ModifyTime time.Time `description:"最近修改日期" json:"-"`
  52. CreateTime time.Time `description:"创建日期"`
  53. Data *ExcelSheetData `gorm:"-" description:"excel的数据"`
  54. Frozen string `description:"冻结行"`
  55. }
  56. // GetAllSheetItemList 根据excel_id获取所有的sheet详情
  57. func GetAllSheetItemList(excelInfoId int) (item []*SheetItem, err error) {
  58. sql := ` SELECT *
  59. FROM excel_sheet WHERE 1=1 AND excel_info_id = ? `
  60. sql += " ORDER BY sort asc "
  61. err = global.DbMap[utils.DbNameIndex].Raw(sql, excelInfoId).Find(&item).Error
  62. return
  63. }
  64. // GetAllNoConfigSheetItemList 根据excel_id获取所有的sheet详情
  65. func GetAllNoConfigSheetItemList(excelInfoId int) (item []*SheetItem, err error) {
  66. sql := ` SELECT excel_sheet_id,excel_info_id,sheet_name,sort,page_num,create_time
  67. FROM excel_sheet WHERE 1=1 AND excel_info_id = ? `
  68. sql += " ORDER BY sort asc "
  69. err = global.DbMap[utils.DbNameIndex].Raw(sql, excelInfoId).Find(&item).Error
  70. return
  71. }
  72. // AddExcelSheetParams excel表格详情表
  73. type AddExcelSheetParams struct {
  74. ExcelSheetId int `orm:"column(excel_sheet_id);pk" gorm:"primaryKey" `
  75. ExcelInfoId int `description:"excel的id"`
  76. SheetName string `description:"sheet名称"`
  77. Index string `description:"excel数据中的index"`
  78. Sort int `description:"排序"`
  79. Config string `description:"配置信息"`
  80. CalcChain string `description:"计算公式"`
  81. DataList []*ExcelSheetData `description:"excel的数据"`
  82. Frozen string `description:"冻结行"`
  83. }