1234567891011121314151617181920212223242526272829303132333435 |
- package test
- import (
- "fmt"
- "math"
- "testing"
- "time"
- )
- func TestName(t *testing.T) {
- println(time.Now().Format("15:04:05"))
- /*
- time_a : 开始时间 "2024-01-24 08:21:40"
- time_b : 结束时间 "2024-03-24 08:21:40"
- WHERE_t_pid : 公司ID > 0
- WHERE_t_tp : 报警类型 > 0
- WHERE_t__state : 状态 -1 无限制 0 删除 1 不处理 2 已处理 3 未处理
- WHERE_t_sn : 设备序列号
- PageIndex : 页码值
- PageSize : 每页多少
- */
- //Handy("2024-01-24 08:21:40","2024-03-24 08:21:40",0,110,-1,"",1,10)
- startTime := time.Now()
- time.Sleep(2 * time.Second) // Simulate some time passing
- endTime := time.Now()
- duration := startTime.Sub(endTime)
- // 将时间差表示为秒
- seconds := int(math.Abs(duration.Seconds()))
- fmt.Println("seconds:", seconds)
- }
|