Skip to content

日期和时间字段

日期和时间字段用于存储完整的时间戳信息,包含日期和时间。

物理字段类型

  • MySQL: datetime
  • PostgreSQL: timestamp
  • SQLite: text

适用场景

  • 预约时间
  • 会议时间
  • 订单时间
  • 登录时间
  • 操作时间

API 返回示例

json
{
  "appointment": "2023-06-15T14:30:00Z",
  "login_time": "2024-01-01T08:00:00Z",
  "order_time": "2023-12-25T16:20:00Z"
}

Released under the MIT License.