IExcel.go 169 B

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