func (a *Additional) IntAt(id utils.ColId) string { if val, ok := utils.GetInt64(a.Row, id); ok { return fmt.Sprintf("%d", val) } else { return "" } }
func (p *Person) IntAt(id utils.ColId) string { if val, ok := utils.GetInt64(p.row, id); ok { return fmt.Sprintf("%d", val) } else { return "" } }
func (o *Offer) IntAt(id utils.ColId) string { if val, ok := utils.GetInt64(o.row, id); ok { return fmt.Sprintf("%d", val) } else { return "" } }