// +---------------------------------------------------------------------- namespace app\model; use think\Model; use think\model\concern\SoftDelete; /** * 文章分类模型 */ class AppsBabyhealthUsers extends Model { // 启用软删除 use SoftDelete; // 数据库表名 protected $name = 'mete_apps_babyhealth_users'; // 字段类型转换 protected $type = [ 'id' => 'integer', 'account' => 'string', 'password' => 'string', 'phone' => 'string', 'email' => 'string', 'name' => 'string', 'sex' => 'integer', 'birth' => 'date', 'avatar' => 'string', 'status' => 'integer', 'create_time' => 'datetime', 'update_time' => 'datetime', 'delete_time' => 'datetime', ]; }