IExcel.go 193 B

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