예제 #1
0
파일: order_get_set.go 프로젝트: foomo/shop
func (order *Order) GetLastModifiedAtFormatted() string {
	return utils.GetFormattedTime(order.LastModifiedAt)
}
예제 #2
0
파일: order_get_set.go 프로젝트: foomo/shop
func (order *Order) GetCreatedAtFormatted() string {
	return utils.GetFormattedTime(order.CreatedAt)
}
예제 #3
0
func (customer *Customer) GetCreatedAtFormatted() string {
	return utils.GetFormattedTime(customer.CreatedAt)
}
예제 #4
0
func (customer *Customer) GetLastModifiedAtFormatted() string {
	return utils.GetFormattedTime(customer.LastModifiedAt)
}
예제 #5
0
파일: version.go 프로젝트: foomo/shop
func (v *Version) GetFormattedTime() string {
	return utils.GetFormattedTime(v.LastModifiedAt)
}