Files
Go-http_framework/util/timed/vo/IntervalObj.go
T

17 lines
357 B
Go
Raw Normal View History

/*
* @Author : huangzj
* @Time : 2020/5/7 13:54
* @Description
*/
package vo
type IntervalObj struct {
IntervalYear float64 //间隔年数
IntervalMonth float64 //间隔月数
IntervalDay float64 //间隔天数
IntervalHour float64 //间隔小时数
IntervalMinute float64 //间隔分钟数
IntervalSecond float64 //间隔秒数
}