![bug.png](http://studygolang.qiniudn.com/170216/c08c0fd37b0fcff614272fa325c856ad.png)
上面出现的错误原因是 我在SQL 语句中添加一个RTRIM() 函数在这个DepositAmount 字段上,然后就会出现这个错误,诡异的是 ,这两条数据是一模一样的,为什么第一条数据是可以读写出来呢,而第二条数据会报错呢,求大神们指点。
type DepositLog struct {
JSJID string
OrderNumber string
State string
DepositAmount string
Remark string
CreateTime time.Time
}
#8