IExcel.go 161 B

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