IExcel.go 220 B

123456789101112
  1. package api
  2. type IExcel interface {
  3. SetSignatures(sign interface{})
  4. SetContent(content interface{})
  5. SetTitle(title string)
  6. SetSheetName(name string)
  7. SetRow(row int)
  8. SetIsPdf(isPdf string)
  9. GetRow() int
  10. Draws()
  11. }