2 Star 1 Fork 2

go-mao/mao

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
money.go 353 Bytes
一键复制 编辑 原始数据 按行查看 历史
haitgo 提交于 2022-11-29 11:15 . v1.0.0
package utils
import (
"github.com/shopspring/decimal"
)
// 分转换为元
func MoneyFenToString(f int64) string {
d := decimal.NewFromInt(f)
return d.Div(decimal.NewFromInt(100)).String()
}
// 将分输出成为 元
type MoneyFen int64
func (d MoneyFen) MarshalJSON() ([]byte, error) {
s := MoneyFenToString(int64(d))
return []byte(s), nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/go-mao/mao.git
git@gitee.com:go-mao/mao.git
go-mao
mao
mao
v1.0.3

搜索帮助