()
| 412 | type EncodingIntID int |
| 413 | |
| 414 | func (i EncodingIntID) MarshalText() ([]byte, error) { |
| 415 | return []byte(fmt.Sprintf("%d", i)), nil |
| 416 | } |
| 417 | |
| 418 | func (i *EncodingIntID) UnmarshalText(text []byte) error { |
| 419 | v, err := strconv.Atoi(string(text)) |