1 Star 0 Fork 0

z-ln/zl-mao

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
money.go 353 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhongqin 提交于 2024-07-02 16:51 . first commit
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 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/zhl-go/zl-mao.git
git@gitee.com:zhl-go/zl-mao.git
zhl-go
zl-mao
zl-mao
v1.0.1

搜索帮助