package recordview

//RecordViewDataRow is one row of data
type RenderRow struct {
	RowNum  int64
	Checked bool   //是否被选中
	Key     string //该行关联的主键值，多字段用csv格式组合
	Data    map[string]interface{}
}
