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