コード例 #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
ファイル: customer_get_set.go プロジェクト: foomo/shop
func (customer *Customer) GetCreatedAtFormatted() string {
	return utils.GetFormattedTime(customer.CreatedAt)
}
コード例 #4
0
ファイル: customer_get_set.go プロジェクト: foomo/shop
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)
}