1 Star 1 Fork 1

xiaoyutab / xgotool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
price.go 370 Bytes
一键复制 编辑 原始数据 按行查看 历史
package xnum
// 金额字段取整(保留两位小数)(舍弃)
//
// v 需要保留位数的金额
func Price(v float64) float64 {
if v < 0 {
return 0 - Divide(0-v, 1)
}
return Divide(v, 1)
}
// 金额字段取整(保留两位小数)(四舍五入)
//
// v 需要保留位数的金额
func PriceHalf(v float64) float64 {
return Price(v + 0.005)
}
Go
1
https://gitee.com/xiaoyutab/xgotool.git
git@gitee.com:xiaoyutab/xgotool.git
xiaoyutab
xgotool
xgotool
v0.3.9

搜索帮助

53164aa7 5694891 3bd8fe86 5694891