Compare commits

...

2 commits

Author SHA1 Message Date
Sofya Mikhaylova
3d809ca6b1
Merge 81b6afad9b into d00399e161 2024-03-17 16:42:26 +08:00
sophistik
81b6afad9b method Ptr() 2021-10-25 23:53:06 +03:00

View file

@ -1557,6 +1557,11 @@ func (d Decimal) Value() (driver.Value, error) {
return d.String(), nil return d.String(), nil
} }
// Decimal returns a pointer to struct
func (d Decimal) Ptr() *Decimal {
return &d
}
// UnmarshalText implements the encoding.TextUnmarshaler interface for XML // UnmarshalText implements the encoding.TextUnmarshaler interface for XML
// deserialization. // deserialization.
func (d *Decimal) UnmarshalText(text []byte) error { func (d *Decimal) UnmarshalText(text []byte) error {