Skip to content

日期字段

日期字段用于存储日期信息,不包含时间部分。

物理字段类型

  • MySQL: date
  • PostgreSQL: date
  • SQLite: text

适用场景

  • 生日
  • 入职日期
  • 计划日期
  • 截止日期
  • 发布日期

API 返回示例

json
{
  "birthday": "1990-01-01",
  "hire_date": "2023-06-15",
  "deadline": "2024-12-31"
}

Released under the MIT License.