12345678910111213141516171819 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- // package h5_access_log implement all interfaces for operation of h5 api log
- package h5_access_log
- import (
- "fmt"
- "strconv"
- )
- const (
- PAGESIZE = 10
- )
- func Decimal(value float64) float64 {
- value, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", value/1000), 64)
- return value
- }
|