'int', 'platform' => 'int', 'ext_info' => 'json', // 将 ext_info 字段映射为 JSON 类型 'is_unbind' => 'bool', 'is_del' => 'bool', ]; // 默认值设置 protected $defaults = [ 'currency' => '', // 设置默认货币类型 'ext_info' => '{}', // 设置默认 ext_info 为空的 JSON 对象 'is_unbind' => false, // 设置默认 is_unbind 为 false 'is_del' => false, // 设置默认 is_del 为 false ]; // 其他自定义方法可以根据需求添加 }