gf-common/excel/model.go

9 lines
245 B
Go
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package excel
type DropdownCol struct {
Column string // 需要下拉框的列标识如B, C
Options []string // 下拉选项列表
StartRow int // 下拉框起始行从1开始
EndRow int // 下拉框结束行
}